24 lines
370 B
Nix
Executable File
24 lines
370 B
Nix
Executable File
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "luca";
|
|
home.homeDirectory = "/home/luca";
|
|
|
|
programs = {
|
|
git = import ./git.nix;
|
|
zsh = import ./zsh.nix;
|
|
tmux = import ./tmux.nix { inherit pkgs; };
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
nodejs_22
|
|
pnpm
|
|
gh
|
|
oh-my-posh
|
|
];
|
|
|
|
home.stateVersion = "24.11";
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|