add vpsfree as a nix builder
This commit is contained in:
parent
4966180de1
commit
40e662779e
3 changed files with 14 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -14,6 +14,9 @@
|
|||
DefaultTimeoutStartSec=900s
|
||||
'';
|
||||
|
||||
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||
time.timeZone = "Europe/London";
|
||||
|
||||
nix.buildCores = 7;
|
||||
}
|
||||
|
||||
|
|
|
@ -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 = [ ];
|
||||
|
|
Loading…
Reference in a new issue