feat: Added nh

This commit is contained in:
uttarayan21
2025-05-20 16:48:21 +05:30
parent 7ddba3ab3a
commit ac100737db
3 changed files with 18 additions and 0 deletions

View File

@@ -7,6 +7,7 @@
# Include the results of the hardware scan. # Include the results of the hardware scan.
./ryu.nix ./ryu.nix
./services ./services
./programs
# ./vms # ./vms
]; ];

View File

@@ -0,0 +1,9 @@
{
pkgs,
lib,
...
}: {
imports = [
./nh.nix
];
}

View File

@@ -0,0 +1,8 @@
{...}: {
programs.nh = {
enable = true;
clean.enable = true;
clean.extraArgs = "--keep-since 4d --keep 3";
flake = "/home/servius/Projects/dotfiles";
};
}