mirror of https://gitlab.crans.org/nounous/nixos
commit
d5872883d8
|
|
@ -18,6 +18,7 @@ in
|
|||
./nullmailer.nix
|
||||
./packages.nix
|
||||
./ssh.nix
|
||||
./store.nix
|
||||
./users.nix
|
||||
./virtualisation.nix
|
||||
];
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
{...}:
|
||||
{
|
||||
nix.gc = {
|
||||
automatic = true;
|
||||
dates = "04:15";
|
||||
# avoid to run nix gc on all machine at the same time
|
||||
randomizedDelaySec = "1h";
|
||||
options = "--delete-older-than 14d";
|
||||
};
|
||||
}
|
||||
Loading…
Reference in New Issue