nix: Set default gc interval to daily at 03:15

This commit is contained in:
Erwin Boskma 2024-07-18 10:47:15 +02:00
parent 30a49503c9
commit d6e4540eb7
Signed by: erwin
SSH key fingerprint: SHA256:/Wk1WZdLg+vQHs3in9qq7PsIp8SMzwGSk/RLZ5zPuZk
4 changed files with 3 additions and 2 deletions

View file

@ -28,7 +28,6 @@
keycloak.enable = true;
nix-common = {
enable = true;
gc-interval = "03:15";
};
};

View file

@ -61,6 +61,7 @@
nix-common = {
enable = true;
cross-systems = [ "aarch64-linux" ];
gc-interval = "weekly";
};
podman.enable = true;
regreet = {

View file

@ -87,6 +87,7 @@
nix-common = {
enable = true;
cross-systems = [ "aarch64-linux" ];
gc-interval = "weekly";
};
regreet = {
enable = false;

View file

@ -20,7 +20,7 @@ in
gc-interval = mkOption {
description = "How often to run nix-collect-garbage";
type = types.str;
default = "weekly";
default = "03:15";
};
};