Skip to content

Commit

Permalink
Remove domain suffix from the build machines
Browse files Browse the repository at this point in the history
  • Loading branch information
wagdav committed Sep 20, 2023
1 parent 1f77bc2 commit 1492a9c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions modules/buildMachines.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,24 @@
let
sshUser = "root";
sshKey = "/root/remote-builder";
domain = "thewagner.home";
in
lib.filter (m: m.hostName != "${config.networking.hostName}.${domain}") [
lib.filter (m: m.hostName != "${config.networking.hostName}") [
{
hostName = "nuc.${domain}";
hostName = "nuc";
systems = [ "x86_64-linux" "i686-linux" "aarch64-linux" ];
maxJobs = 4;
supportedFeatures = [ "kvm" "nixos-test" "big-parallel" "benchmark" ];
inherit sshUser sshKey;
}
{
hostName = "rp3.${domain}";
hostName = "rp3";
system = "aarch64-linux";
maxJobs = 4;
supportedFeatures = [ "kvm" "nixos-test" "big-parallel" "benchmark" ];
inherit sshUser sshKey;
}
{
hostName = "rp4.${domain}";
hostName = "rp4";
system = "aarch64-linux";
maxJobs = 4;
supportedFeatures = [ "kvm" "nixos-test" "big-parallel" "benchmark" ];
Expand Down

0 comments on commit 1492a9c

Please sign in to comment.