add vpsfree as a nix builder

This commit is contained in:
Cyryl Płotnicki 2022-03-06 20:18:50 +00:00
parent 4966180de1
commit 40e662779e
3 changed files with 14 additions and 0 deletions

View file

@ -6,6 +6,7 @@
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t480
./hardware-configuration.nix
./tailscale-foureighty.nix
./custom-kernel.nix
../../backups.nix
../../boot.nix
../../common.nix

View file

@ -14,6 +14,9 @@
DefaultTimeoutStartSec=900s
'';
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
time.timeZone = "Europe/London";
nix.buildCores = 7;
}

View file

@ -11,6 +11,16 @@
sshKey = "/home/cyryl/.ssh/id_ed25519";
systems = [ "x86_64-linux" "aarch64-linux" ];
maxJobs = 2;
speedFactor = 1;
supportedFeatures = [ "kvm" "big-parallel" ];
mandatoryFeatures = [ ];
}
{
hostName = "vpsfree1";
sshUser = "nix-builder";
sshKey = "/home/cyryl/.ssh/id_ed25519";
systems = [ "x86_64-linux" "aarch64-linux" ];
maxJobs = 2;
speedFactor = 2;
supportedFeatures = [ "kvm" "big-parallel" ];
mandatoryFeatures = [ ];