added remote build user in puter and removed it from box
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
#./syncthing.nix
|
||||
./packages.nix
|
||||
./de/default.nix
|
||||
./remotebuild_user.nix
|
||||
../../modules/userapps/kondo_timer.nix
|
||||
../../modules/common/nix.nix
|
||||
../../modules/common/networking.nix
|
||||
|
||||
17
hosts/puter/remotebuild_user.nix
Normal file
17
hosts/puter/remotebuild_user.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user