diff options
| author | Mel <einebeere@gmail.com> | 2025-01-22 14:41:14 +0100 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2025-02-07 21:48:27 +0100 |
| commit | f24ba296b528dcc2764e3d565997b8a33be3585a (patch) | |
| tree | 4dbc62ec0a7600754c089a569c7a527aade9c672 | |
| parent | 9f9cbed779a82632c7d28470e680e9f689f20696 (diff) | |
| download | minerals-f24ba296b528dcc2764e3d565997b8a33be3585a.tar.zst minerals-f24ba296b528dcc2764e3d565997b8a33be3585a.zip | |
Update nix configuration with some useful settings
Signed-off-by: Mel <einebeere@gmail.com>
| -rw-r--r-- | modules/nix.nix | 7 |
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; |
