nix-darwin/home/default.nix

37 lines
593 B
Nix
Executable file

{
pkgs,
username,
...
}: {
imports = [
./fd.nix
./fzf.nix
./gh.nix
./git.nix
./nvf
./ripgrep.nix
./starship.nix
./zoxide.nix
./zsh.nix
./eza.nix
./jq.nix
./lazygit.nix
./mise.nix
./terminal.nix
./bat.nix
./aerospace.nix
./sops.nix
./ssh.nix
];
home = {
inherit username;
homeDirectory = "/Users/${username}";
stateVersion = "25.11";
# packages that are not available via programs and does not need regular updates
packages = with pkgs; [];
};
programs.home-manager.enable = true;
}