disable nix.gc.automatic on chonk
This commit is contained in:
parent
35e8f5116b
commit
6f1e4888a2
|
@ -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"];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue