Files
dotfiles/nix/users/luca/home.nix
2025-01-21 04:32:14 +00:00

26 lines
471 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; };
helix = import ./helix.nix { inherit pkgs; };
};
home.packages = with pkgs; [
nodePackages_latest.typescript-language-server
nodejs_22
pnpm
gh
oh-my-posh
];
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}