diff options
| -rw-r--r-- | machines/biski/default.nix | 1 | ||||
| -rw-r--r-- | modules/nixos/remote-build.nix | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/machines/biski/default.nix b/machines/biski/default.nix index 74363a4..383c958 100644 --- a/machines/biski/default.nix +++ b/machines/biski/default.nix @@ -14,6 +14,7 @@ ./portforward.nix ../../modules/users/git.nix + ../../modules/users/nixremote.nix ]; # Use the systemd-boot EFI boot loader. diff --git a/modules/nixos/remote-build.nix b/modules/nixos/remote-build.nix index 79da57e..7ce2a48 100644 --- a/modules/nixos/remote-build.nix +++ b/modules/nixos/remote-build.nix @@ -16,5 +16,18 @@ sshKey = "/root/.ssh/nixremote"; sshUser = "nixremote"; } + { + hostName = "biski"; + systems = [ "x86_64-linux" ]; + supportedFeatures = [ + "nixos-test" + "benchmark" + "llvm" + ]; + maxJobs = 1; + speedFactor = 3; + sshKey = "/root/.ssh/nixremote"; + sshUser = "nixremote"; + } ]; } |
