clouvider-lon01: disable automatic nix-gc

It's used as a Nix build cache machine - since we don't have gcroot
generation, it's better to just not collect garbage for the moment.
This commit is contained in:
Luke Granger-Brown 2020-11-06 05:21:37 +00:00
parent c83d32e6b9
commit b2384d844d

View file

@ -246,5 +246,7 @@ in {
home = "/srv/gitlab-runner"; home = "/srv/gitlab-runner";
}; };
nix.gc.automatic = false;
system.stateVersion = "20.09"; system.stateVersion = "20.09";
} }