diff options
author | Karel Kočí <cynerd@email.cz> | 2022-11-14 10:57:28 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-11-14 10:57:28 +0100 |
commit | 7778d9aacf2da005db404cd09e7f54999bb0aef9 (patch) | |
tree | 5ae07b7ca1b46afcb5e65162ea2c90720e69b5ab | |
parent | 102f883ab39eda8e5209eabaa66d769096ecf22e (diff) | |
download | nixos-personal-7778d9aacf2da005db404cd09e7f54999bb0aef9.tar.gz nixos-personal-7778d9aacf2da005db404cd09e7f54999bb0aef9.tar.bz2 nixos-personal-7778d9aacf2da005db404cd09e7f54999bb0aef9.zip |
nixos: disable automatic garbage collect
I encounter missing derivations during the longer builds a lot and this
might be the cause.
-rw-r--r-- | nixos/modules/generic.nix | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/nixos/modules/generic.nix b/nixos/modules/generic.nix index 6a658d8..a7816ed 100644 --- a/nixos/modules/generic.nix +++ b/nixos/modules/generic.nix @@ -25,10 +25,6 @@ in { ]; trusted-users = [ "@wheel" ]; }; - gc = { - automatic = true; - persistent = true; - }; registry = { personal.to = { type = "git"; |