zaneyos/modules/core/nh.nix

20 lines
287 B
Nix
Raw Normal View History

2025-02-17 06:31:31 +01:00
{
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
];
}