diff options
author | Alan Pearce | 2018-04-11 14:41:06 +0200 |
---|---|---|
committer | Alan Pearce | 2018-04-11 14:41:06 +0200 |
commit | 14cee12227e127e7e0e309d02c901ce065f07958 (patch) | |
tree | 41461775cf591b078c8f72f18f4c1ebb0b76f438 /modules | |
parent | d74d376fcb4f325bcfe91de750f5b07ce4f8d487 (diff) | |
download | nixos-configuration-14cee12227e127e7e0e309d02c901ce065f07958.tar.lz nixos-configuration-14cee12227e127e7e0e309d02c901ce065f07958.tar.zst nixos-configuration-14cee12227e127e7e0e309d02c901ce065f07958.zip |
Remove remote-build configuration
Diffstat (limited to 'modules')
-rw-r--r-- | modules/hardware/laptop.nix | 1 | ||||
-rw-r--r-- | modules/remote-build.nix | 13 |
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 = []; - }]; -} |