remove builders for hs
All checks were successful
/ build-all (push) Successful in 1m11s

This commit is contained in:
Antoine Vaure 2025-10-31 12:01:49 +01:00
parent 4734e7362d
commit 9b7faa8017

View file

@ -145,18 +145,18 @@ in {
secretKeyFile = "/var/cache-priv-key.pem";
};
nix.distributedBuilds = true;
nix.settings.builders-use-substitutes = true;
nix.buildMachines = [
{
hostName = "192.168.1.2";
protocol = "ssh-ng";
sshUser = "remotebuild";
sshKey = "/home/ant/.ssh/id_ed25519";
system = pkgs.stdenv.hostPlatform.system;
supportedFeatures = [ "nixos-test" "big-parallel" "kvm" "gccarch-x86-64-v3" ];
}
];
# nix.distributedBuilds = true;
# nix.settings.builders-use-substitutes = true;
# nix.buildMachines = [
# {
# hostName = "192.168.1.2";
# protocol = "ssh-ng";
# sshUser = "remotebuild";
# sshKey = "/home/ant/.ssh/id_ed25519";
# system = pkgs.stdenv.hostPlatform.system;
# supportedFeatures = [ "nixos-test" "big-parallel" "kvm" "gccarch-x86-64-v3" ];
# }
# ];
nix.settings.auto-optimise-store = true;
}