Laptop: Use remote build server
Alan Pearce alan@alanpearce.eu
Mon, 02 Oct 2017 19:59:50 +0200
2 files changed, 14 insertions(+), 0 deletions(-)
M modules/hardware/laptop.nix → modules/hardware/laptop.nix
@@ -73,5 +73,6 @@ systemd.services.nix-gc.unitConfig.ConditionACPower = true; imports = [ ../user-interface.nix + ../remote-build.nix ]; }
A modules/remote-build.nix
@@ -0,0 +1,13 @@+{ config, pkgs, ... }: + +{ nix.distributedBuilds = true; + nix.buildMachines = [{ + hostName = "oak.alanpearce.eu"; + sshUser = "nix-ssh"; + sshKey = "/root/.ssh/id_ed25519"; + system = "x86_64-linux"; + maxJobs = 2; + supportedFeatures = ["kvm"]; + mandatoryFeatures = []; + }]; +}