summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--modules/nix.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/nix.nix b/modules/nix.nix
index 12df1fb..a23b0d7 100644
--- a/modules/nix.nix
+++ b/modules/nix.nix
@@ -20,9 +20,14 @@
         "nix-command"
       ];
       trusted-users = [
-        "root"
         "mel"
       ];
+      # usually my builders have faster connections
+      builders-use-substitutes = true;
+      # don't wait too long on caches that are down
+      connect-timeout = 3;
+      # yes nix, i know my flake is dirty!!!
+      warn-dirty = false;
     };
 
     distributedBuilds = true;