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";
};
nix.buildMachines = [{
hostName = "infini-desktop";
system = "x86_64-linux";
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
protocol = "ssh-ng";
maxJobs = 16;
speedFactor = 8;
sshUser = "remotebuild";
}];
nix.buildMachines = [
#{
# hostName = "infini-desktop";
# system = "x86_64-linux";
# supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
# protocol = "ssh-ng";
# maxJobs = 16;
# 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";
}
];
}