nix: remove auto-gc

This commit is contained in:
Primrose 2025-04-09 08:33:04 +02:00
parent 9fadb6a6c0
commit 656e76720e
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
4 changed files with 0 additions and 23 deletions

View file

@ -1,11 +0,0 @@
{
nixosConfig ? null,
lib,
...
}: {
nix.gc = lib.mkIf (!nixosConfig.nix.gc.automatic or false) {
automatic = true;
frequency = "daily";
options = "--delete-older-than 90d";
};
}