summary refs log tree commit diff stats
path: root/modules/remote-build.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/remote-build.nix')
-rw-r--r--modules/remote-build.nix13
1 files changed, 0 insertions, 13 deletions
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 = [];
-  }];
-}