move nh config to module

This commit is contained in:
smayzy
2025-06-28 13:59:09 +00:00
parent 469b63bcfc
commit b80bbe97dc
2 changed files with 10 additions and 7 deletions
+9
View File
@@ -0,0 +1,9 @@
{ config, lib, pkgs, ...}:
{
programs.nh = {
enable = true;
clean.enable = true;
clean.extraArgs = "--keep-since 30d --keep 10";
flake = "/home/smayzy/nix-config";
};
}