summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--modules/hardware/laptop.nix1
-rw-r--r--modules/remote-build.nix13
2 files changed, 0 insertions, 14 deletions
diff --git a/modules/hardware/laptop.nix b/modules/hardware/laptop.nix
index 1c5d5e3..bd08308 100644
--- a/modules/hardware/laptop.nix
+++ b/modules/hardware/laptop.nix
@@ -52,6 +52,5 @@
 
   imports = [
     ../user-interface.nix
-    ../remote-build.nix
   ];
 }
diff --git a/modules/remote-build.nix b/modules/remote-build.nix
deleted file mode 100644
index 7c1906f..0000000
--- a/modules/remote-build.nix
+++ /dev/null
@@ -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 = [];
-  }];
-}