Files
dotfiles/nix/users/luca/home.nix
2025-05-31 16:09:07 -07:00

29 lines
442 B
Nix

{
config,
pkgs,
lib,
...
}:
{
home.username = "luca";
home.homeDirectory = "/home/luca";
programs = {
git = import ./git.nix;
zsh = import ./zsh.nix { inherit pkgs; };
tmux = import ./tmux.nix { inherit pkgs; };
oh-my-posh = import ./omp.nix;
eza = import ./eza.nix;
};
home.packages = with pkgs; [
nodejs_22
pnpm
];
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}