zaneyos/modules/core/nh.nix
tylerzanekelley@gmail.com 4943416647 Properly setup nh
2025-02-16 23:31:31 -06:00

20 lines
287 B
Nix

{
pkgs,
username,
...
}: {
programs.nh = {
enable = true;
clean = {
enable = true;
extraArgs = "--keep-since 7d --keep 5";
};
flake = "/home/${username}/zaneyos";
};
environment.systemPackages = with pkgs; [
nix-output-monitor
nvd
];
}