Fixed: Warnings, Remote Builders

This commit is contained in:
2026-02-11 11:26:31 +01:00
parent 50d930e1ff
commit d21b3b3c19
3 changed files with 19 additions and 11 deletions

View File

@@ -39,7 +39,6 @@
settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
builders = "ssh://phil@192.168.2.40 aarch64-linux";
builders-use-substitutes = true;
};
gc = {
@@ -47,6 +46,17 @@
dates = "weekly";
options = "--delete-older-than 30d";
};
buildMachines = [
{
hostName = "192.168.2.40";
system = "aarch64-linux";
user = "phil";
maxJobs = 4;
speedFactor = 2;
supportedFeatures = ["nixos-test" "benchmark" "big-parallel" "kvm"];
mandatoryFeatures = [ ];
}
];
};
system.stateVersion = "24.11";