14 lines
246 B
Nix
14 lines
246 B
Nix
{config, ...}: {
|
|
flake.modules.nixos.base = {
|
|
programs.nh = {
|
|
enable = true;
|
|
flake = config.flake.meta.location;
|
|
|
|
clean = {
|
|
enable = true;
|
|
dates = "daily";
|
|
extraArgs = "-k3";
|
|
};
|
|
};
|
|
};
|
|
}
|