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

@@ -10,7 +10,6 @@
./glance.nix
./packages.nix
./hardware-configuration.nix
./remotebuild_user.nix
../../modules/common/nix.nix
../../modules/raspberrypi.nix
../../modules/common/networking.nix

View File

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