fix: Remove unused build machines for now

This commit is contained in:
Tristan D. 2024-10-17 15:39:27 +02:00
parent e61b04604e
commit c04f0b8f42
Signed by: tristan
SSH key fingerprint: SHA256:9oFM1J63hYWJjCnLG6C0fxBS15rwNcWwdQNMOHYKJ/4

View file

@ -28,41 +28,41 @@
nix.settings.builders-use-substitutes = true;
nix.distributedBuilds = true;
nix.buildMachines = [
{
hostName = "nixremote@nixos-desk";
system = "x86_64-linux";
protocol = "ssh";
maxJobs = 2;
speedFactor = 0;
supportedFeatures = [
"benchmark"
"big-parallel"
"kvm"
"nixos-test"
"gccarch-x86-64-v3"
"gccarch-znver3"
];
mandatoryFeatures = [ ];
}
{
hostName = "nixremote@nixos-pulse";
system = "x86_64-linux";
protocol = "ssh";
maxJobs = 0;
speedFactor = 1;
supportedFeatures = [
"benchmark"
"big-parallel"
"kvm"
"nixos-test"
"gccarch-x86-64-v3"
"gccarch-znver2"
];
mandatoryFeatures = [ ];
}
];
nix.buildMachines = [ ];
# [
# {
# hostName = "nixremote@nixos-desk";
# system = "x86_64-linux";
# protocol = "ssh";
# maxJobs = 0;
# speedFactor = 0;
# supportedFeatures = [
# "benchmark"
# "big-parallel"
# "kvm"
# "nixos-test"
# "gccarch-x86-64-v3"
# "gccarch-znver3"
# ];
# mandatoryFeatures = [ ];
# }
# {
# hostName = "nixremote@nixos-pulse";
# system = "x86_64-linux";
# protocol = "ssh";
# maxJobs = 0;
# speedFactor = 1;
# supportedFeatures = [
# "benchmark"
# "big-parallel"
# "kvm"
# "nixos-test"
# "gccarch-x86-64-v3"
# "gccarch-znver2"
# ];
# mandatoryFeatures = [ ];
# }
# ];
####################
systemd.user = {