Disable nix garbage collector in tent

Reviewed-by: Aleix Boné <abonerib@bsc.es>
Reviewed-by: Rodrigo Arias Mallo <rodrigo.arias@bsc.es>
This commit is contained in:
Aleix Roca Nonell 2025-06-07 17:51:40 +02:00 committed by Rodrigo Arias Mallo
parent cf9bcc27e0
commit 7bb11611a8

View File

@ -67,4 +67,7 @@
wantedBy = [ "multi-user.target" ];
serviceConfig.ExecStart = script;
};
# disable automatic garbage collector
nix.gc.automatic = lib.mkForce false;
}