all repos — nixfiles @ 14cee12227e127e7e0e309d02c901ce065f07958

System and user configuration, managed by nix and home-manager

Remove remote-build configuration
Alan Pearce alan@alanpearce.eu
Wed, 11 Apr 2018 14:41:06 +0200
commit

14cee12227e127e7e0e309d02c901ce065f07958

parent

d74d376fcb4f325bcfe91de750f5b07ce4f8d487

2 files changed, 0 insertions(+), 14 deletions(-)

jump to
M modules/hardware/laptop.nixmodules/hardware/laptop.nix
@@ -52,6 +52,5 @@ systemd.services.nix-gc.unitConfig.ConditionACPower = true; 
   imports = [
     ../user-interface.nix
-    ../remote-build.nix
   ];
 }
D modules/remote-build.nix
@@ -1,13 +0,0 @@-{ 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 = [];
-  }];
-}