Infini-FRAMEWORK: use Infini-SD for remote building

This commit is contained in:
Infinidoge 2024-03-20 17:15:29 -04:00
parent c5225aef76
commit 0fb4a5218b
Signed by: Infinidoge
SSH key fingerprint: SHA256:oAMyvotlNFraMmZmr+p6AxnNfW/GioTs1pOn3V4tQ7A

View file

@ -90,13 +90,24 @@
script = "${lib.getExe pkgs.acpilight} -set 50"; script = "${lib.getExe pkgs.acpilight} -set 50";
}; };
nix.buildMachines = [{ nix.buildMachines = [
hostName = "infini-desktop"; #{
system = "x86_64-linux"; # hostName = "infini-desktop";
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ]; # system = "x86_64-linux";
protocol = "ssh-ng"; # supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
maxJobs = 16; # protocol = "ssh-ng";
speedFactor = 8; # maxJobs = 16;
sshUser = "remotebuild"; # speedFactor = 8;
}]; # sshUser = "remotebuild";
#}
{
hostName = "infini-sd";
system = "x86_64-linux";
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
protocol = "ssh-ng";
maxJobs = 32;
speedFactor = 16;
sshUser = "remotebuild";
}
];
} }