added remote build user in puter and removed it from box

This commit is contained in:
2025-10-02 18:41:09 +03:00
parent 4e87db2032
commit da64a3ee1e
3 changed files with 1 additions and 1 deletions

View File

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