diff --git a/nixos/ryu/configuration.nix b/nixos/ryu/configuration.nix index 48f9bd7b..df999ee6 100644 --- a/nixos/ryu/configuration.nix +++ b/nixos/ryu/configuration.nix @@ -7,6 +7,7 @@ # Include the results of the hardware scan. ./ryu.nix ./services + ./programs # ./vms ]; diff --git a/nixos/ryu/programs/default.nix b/nixos/ryu/programs/default.nix new file mode 100644 index 00000000..f482b757 --- /dev/null +++ b/nixos/ryu/programs/default.nix @@ -0,0 +1,9 @@ +{ + pkgs, + lib, + ... +}: { + imports = [ + ./nh.nix + ]; +} diff --git a/nixos/ryu/programs/nh.nix b/nixos/ryu/programs/nh.nix new file mode 100644 index 00000000..40d5704d --- /dev/null +++ b/nixos/ryu/programs/nh.nix @@ -0,0 +1,8 @@ +{...}: { + programs.nh = { + enable = true; + clean.enable = true; + clean.extraArgs = "--keep-since 4d --keep 3"; + flake = "/home/servius/Projects/dotfiles"; + }; +}