aboutsummaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-08-04 13:20:41 +0200
committersils <sils@sils.li>2023-08-04 13:20:41 +0200
commitd8960d44ccb585ba149ecd1c3101f89ff6e4ed31 (patch)
tree36d4b651b4d631b60376c5ca98208dcaaa560b4c /sys
parentFix(s/nix): Disable nix-channels (diff)
downloadnix-config-d8960d44ccb585ba149ecd1c3101f89ff6e4ed31.zip
Feat(s/nix): Enable remote builds on server1.vhack.eu
Diffstat (limited to '')
-rw-r--r--sys/nix/default.nix9
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";