correct + comment remotebuild + update

This commit is contained in:
2025-10-04 15:46:05 +03:00
parent da64a3ee1e
commit 26ae641d28
3 changed files with 23 additions and 19 deletions

View File

@@ -1,17 +1,21 @@
{ 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
'';
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
'';
}