nix: Set default gc interval to daily at 03:15
This commit is contained in:
parent
30a49503c9
commit
d6e4540eb7
4 changed files with 3 additions and 2 deletions
|
@ -28,7 +28,6 @@
|
|||
keycloak.enable = true;
|
||||
nix-common = {
|
||||
enable = true;
|
||||
gc-interval = "03:15";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -61,6 +61,7 @@
|
|||
nix-common = {
|
||||
enable = true;
|
||||
cross-systems = [ "aarch64-linux" ];
|
||||
gc-interval = "weekly";
|
||||
};
|
||||
podman.enable = true;
|
||||
regreet = {
|
||||
|
|
|
@ -87,6 +87,7 @@
|
|||
nix-common = {
|
||||
enable = true;
|
||||
cross-systems = [ "aarch64-linux" ];
|
||||
gc-interval = "weekly";
|
||||
};
|
||||
regreet = {
|
||||
enable = false;
|
||||
|
|
|
@ -20,7 +20,7 @@ in
|
|||
gc-interval = mkOption {
|
||||
description = "How often to run nix-collect-garbage";
|
||||
type = types.str;
|
||||
default = "weekly";
|
||||
default = "03:15";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue