diff options
author | sils <sils@sils.li> | 2023-08-04 13:20:41 +0200 |
---|---|---|
committer | sils <sils@sils.li> | 2023-08-04 13:20:41 +0200 |
commit | d8960d44ccb585ba149ecd1c3101f89ff6e4ed31 (patch) | |
tree | 36d4b651b4d631b60376c5ca98208dcaaa560b4c /sys/nix | |
parent | Fix(s/nix): Disable nix-channels (diff) | |
download | nix-config-d8960d44ccb585ba149ecd1c3101f89ff6e4ed31.tar.gz nix-config-d8960d44ccb585ba149ecd1c3101f89ff6e4ed31.zip |
Feat(s/nix): Enable remote builds on server1.vhack.eu
Diffstat (limited to 'sys/nix')
-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"; |