disable nix.gc.automatic on chonk

This commit is contained in:
Hendrik Sokolowski 2023-10-21 22:43:08 +02:00
parent 35e8f5116b
commit 6f1e4888a2

View file

@ -2,6 +2,7 @@
self, self,
config, config,
pkgs, pkgs,
lib,
... ...
}: let }: let
psCfg = config.pub-solar; psCfg = config.pub-solar;
@ -12,7 +13,10 @@ in {
file = "${self}/secrets/chonk_nix_builder_private_key.age"; file = "${self}/secrets/chonk_nix_builder_private_key.age";
}; };
nix.settings.trusted-users = ["builder"]; nix = {
gc.automatic = lib.mkForce false;
settings.trusted-users = ["builder"];
};
boot.binfmt.emulatedSystems = ["aarch64-linux"]; boot.binfmt.emulatedSystems = ["aarch64-linux"];