Files
nixos-haus/hosts/puter/remotebuild_user.nix

22 lines
411 B
Nix

{
config,
pkgs,
...
}: {
nix.buildMachines = [
{
hostName = "192.168.0.101";
system = "aarch64-linux";
protocol = "ssh-ng";
maxJobs = 1;
speedFactor = 2;
supportedFeatures = ["nixos-test" "benchmark" "big-parallel" "kvm"];
mandatoryFeatues = [];
}
];
nix.distributedBuilds = true;
nix.extraOptions = ''
builders-use-substitutes = true
'';
}