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;
|
keycloak.enable = true;
|
||||||
nix-common = {
|
nix-common = {
|
||||||
enable = true;
|
enable = true;
|
||||||
gc-interval = "03:15";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -61,6 +61,7 @@
|
||||||
nix-common = {
|
nix-common = {
|
||||||
enable = true;
|
enable = true;
|
||||||
cross-systems = [ "aarch64-linux" ];
|
cross-systems = [ "aarch64-linux" ];
|
||||||
|
gc-interval = "weekly";
|
||||||
};
|
};
|
||||||
podman.enable = true;
|
podman.enable = true;
|
||||||
regreet = {
|
regreet = {
|
||||||
|
|
|
@ -87,6 +87,7 @@
|
||||||
nix-common = {
|
nix-common = {
|
||||||
enable = true;
|
enable = true;
|
||||||
cross-systems = [ "aarch64-linux" ];
|
cross-systems = [ "aarch64-linux" ];
|
||||||
|
gc-interval = "weekly";
|
||||||
};
|
};
|
||||||
regreet = {
|
regreet = {
|
||||||
enable = false;
|
enable = false;
|
||||||
|
|
|
@ -20,7 +20,7 @@ in
|
||||||
gc-interval = mkOption {
|
gc-interval = mkOption {
|
||||||
description = "How often to run nix-collect-garbage";
|
description = "How often to run nix-collect-garbage";
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "weekly";
|
default = "03:15";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue