15 lines
229 B
Nix
15 lines
229 B
Nix
# Nix-Helper: github.com/viperML/nh
|
|
{ common, ... }:
|
|
|
|
{
|
|
programs.nh = {
|
|
enable = true;
|
|
flake = common.root;
|
|
clean = {
|
|
enable = true;
|
|
dates = "weekly";
|
|
extraArgs = "--keep-since 30d";
|
|
};
|
|
};
|
|
}
|