diff options
Diffstat (limited to '')
-rw-r--r-- | sys/nix/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/nix/default.nix b/sys/nix/default.nix index 8893a28..8a86529 100644 --- a/sys/nix/default.nix +++ b/sys/nix/default.nix @@ -1,6 +1,15 @@ {...}: { nix = { channel.enable = false; + distributedBuilds = true; + buildMachines = [ + { + hostName = "server1.vhack.eu"; + protocol = "ssh-ng"; + system = "x86_64-linux"; + supportedFeatures = ["big-parallel"]; + } + ]; gc = { automatic = true; dates = "daily"; |