Don't garbage collect in a built ISO.
The ISO is immutable so garbage collection does not make sense.
This commit is contained in:
@@ -103,7 +103,7 @@
|
||||
};
|
||||
|
||||
# Automatic garbage collection
|
||||
nix.gc = {
|
||||
nix.gc = lib.mkIf (!config.me.buildingIso) {
|
||||
# Runs nix-collect-garbage --delete-older-than 5d
|
||||
automatic = true;
|
||||
randomizedDelaySec = "14m";
|
||||
|
||||
Reference in New Issue
Block a user