diff options
author | Ben Sima <ben@bsima.me> | 2022-09-02 10:07:50 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-09-02 10:07:50 -0400 |
commit | f645808a1449a40d71e3cadd0b5b5bac164d5a7f (patch) | |
tree | bb1f9477c840ed41fc90e7a86cfb735d543d2ec0 /machines | |
parent | a55d3efcaa9b8d2a30b40606dae3e06b37665369 (diff) |
lots of updates, idk
Diffstat (limited to 'machines')
-rw-r--r-- | machines/helium.nix | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/machines/helium.nix b/machines/helium.nix index 62f7450..d2a054f 100644 --- a/machines/helium.nix +++ b/machines/helium.nix @@ -95,7 +95,7 @@ in { clight.enable = true; clight.temperature.day = 5000; - clight.temperature.night = 2300; + clight.temperature.night = 1800; printing.enable = true; @@ -172,12 +172,11 @@ in { nix.gc.automatic = false; nix.gc.dates = "03:15"; - nix.binaryCaches = [ "https://cache.nixos.org/" ]; + nix.extraOptions = '' builders-use-substitutes = true ''; - nix.maxJobs = lib.mkDefault 4; nix.buildMachines = [ { hostName = "dev.simatime.com"; @@ -187,7 +186,10 @@ in { } ]; nix.distributedBuilds = true; - nix.trustedUsers = [ "root" "ben" ]; + + nix.settings.trusted-users = [ "root" "ben" ]; + nix.settings.substituters = [ "https://cache.nixos.org/" ]; + nix.settings.max-jobs = lib.mkDefault 4; # This value determines the NixOS release with which your system is to be # compatible, in order to avoid breaking some software such as database |