This commit is contained in:
Charlie Root 2024-05-14 20:33:43 +02:00
commit afb7b748bf
3 changed files with 18 additions and 9 deletions

View file

@ -2,5 +2,6 @@ _: {
imports = [
./neovim.nix
./fish.nix
./nh.nix
];
}

16
modules/cli/nh.nix Normal file
View file

@ -0,0 +1,16 @@
{ pkgs, lib, config, callPackage, ... }:
with lib; let
username = config.modules.other.system.username;
cfg = config.modules.programs.nh;
in {
options.modules.programs.nh.enable = mkEnableOption "nh";
config = mkIf cfg.enable {
programs.nh = {
enable = true;
clean.enable = true;
clean.extraArgs = "--keep-since 4d --keep 3";
flake = "/home/vali/repos/nichts";
};
};
}