diff options
author | Emile <git@emile.space> | 2025-04-11 19:33:55 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2025-04-11 19:33:55 +0200 |
commit | bb6b68c79534e54912e4b9d4dec3312862752091 (patch) | |
tree | 93720be95988794049f3ca27b2c1028424502f47 /nix/hosts/caladan | |
parent | 71fdec27b3492f2e517665f83659c5ba28a1c9bd (diff) |
changed remote builder config and allowUnsupportedSystem
Diffstat (limited to 'nix/hosts/caladan')
-rw-r--r-- | nix/hosts/caladan/darwin-configuration.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/nix/hosts/caladan/darwin-configuration.nix b/nix/hosts/caladan/darwin-configuration.nix index ef18642..6fdbdaa 100644 --- a/nix/hosts/caladan/darwin-configuration.nix +++ b/nix/hosts/caladan/darwin-configuration.nix @@ -85,10 +85,10 @@ { hostName = "corrino.emile.space"; system = "x86_64-linux"; - maxJobs = 16; + maxJobs = 10; speedFactor = 2; - # Feature | Derivations requiring it + # Feature | Derivations requiring it # ----------------|----------------------------------------------------- # kvm | Everything which builds inside a vm, like NixOS tests # nixos-test | Machine can run NixOS tests @@ -110,8 +110,9 @@ ]; }; - nixpkgs = { - config.allowUnfree = true; + nixpkgs.config = { + allowUnfree = true; + allowUnsupportedSystem = true; }; services.nix-daemon.enable = true; |