Files
dotfiles/nix/users/luca/home.nix

23 lines
406 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;
};
home.packages = with pkgs; [
nodejs_22
pnpm
];
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}