Instead of doing `inherit (lib) <something>``, all inherits now use `inherit (lib.<subsystem>) <something>`, which is much nicer.
21 lines
474 B
Nix
21 lines
474 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
cfg = config.modules.programs.nh;
|
|
inherit (config.modules.other.system) username;
|
|
inherit (lib.modules) mkIf;
|
|
inherit (lib.options) mkEnableOption;
|
|
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/${username}/repos/projects/nichts";
|
|
};
|
|
};
|
|
}
|