summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/remote-build
diff options
context:
space:
mode:
Diffstat (limited to 'makefu/2configs/remote-build')
-rw-r--r--makefu/2configs/remote-build/aarch64-community.nix15
-rw-r--r--makefu/2configs/remote-build/gum.nix23
-rw-r--r--makefu/2configs/remote-build/slave.nix12
3 files changed, 0 insertions, 50 deletions
diff --git a/makefu/2configs/remote-build/aarch64-community.nix b/makefu/2configs/remote-build/aarch64-community.nix
deleted file mode 100644
index d57eacd6..00000000
--- a/makefu/2configs/remote-build/aarch64-community.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- nix = {
- distributedBuilds = true;
- buildMachines = [
- {
- hostName = "aarch64.nixos.community";
- maxJobs = 64;
- sshKey = toString <secrets/nixos-community>;
- sshUser = "makefu";
- system = "aarch64-linux";
- supportedFeatures = [ "big-parallel" ];
- }
- ];
- };
-}
diff --git a/makefu/2configs/remote-build/gum.nix b/makefu/2configs/remote-build/gum.nix
deleted file mode 100644
index 39e90f1b..00000000
--- a/makefu/2configs/remote-build/gum.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- nix = {
- distributedBuilds = true;
- buildMachines = [
- {
- hostName = "gum.krebsco.de";
- maxJobs = 8;
- sshKey = toString <secrets/id_nixBuild>;
- sshUser = "nixBuild";
- system = "x86_64-linux";
- supportedFeatures = [ ];
- }
- {
- hostName = "gum.krebsco.de";
- maxJobs = 8;
- sshKey = toString <secrets/id_nixBuild>;
- sshUser = "nixBuild";
- system = "armv6l-linux";
- supportedFeatures = [ ];
- }
- ];
- };
-}
diff --git a/makefu/2configs/remote-build/slave.nix b/makefu/2configs/remote-build/slave.nix
deleted file mode 100644
index 039698f1..00000000
--- a/makefu/2configs/remote-build/slave.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{config,...}:{
- nix.trustedUsers = [ "nixBuild" ];
- users.users.nixBuild = {
- name = "nixBuild";
- isNormalUser = true;
- useDefaultShell = true;
- openssh.authorizedKeys.keys = [
- config.krebs.users.buildbotSlave.pubkey
- config.krebs.users.makefu-remote-builder.pubkey
- ];
- };
-}