dinky: update remote builder config
This commit is contained in:
parent
79cbb2462a
commit
8d7ebd3656
1 changed files with 11 additions and 4 deletions
|
@ -117,22 +117,29 @@
|
||||||
systemd.services."getty@tty1".enable = false;
|
systemd.services."getty@tty1".enable = false;
|
||||||
systemd.services."autovt@tty1".enable = false;
|
systemd.services."autovt@tty1".enable = false;
|
||||||
|
|
||||||
|
nix.settings.trusted-users = [ "dln" ];
|
||||||
nix.buildMachines = [
|
nix.buildMachines = [
|
||||||
{
|
{
|
||||||
hostName = "nemo.aarn.patagia.dev";
|
hostName = "nemo.aarn.patagia.dev";
|
||||||
sshUser = "nixremote";
|
sshUser = "nixremote";
|
||||||
|
sshKey = "/root/.ssh/id_ed25519";
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
protocol = "ssh-ng";
|
protocol = "ssh-ng";
|
||||||
maxJobs = 32;
|
maxJobs = 32;
|
||||||
speedFactor = 2;
|
speedFactor = 2;
|
||||||
supportedFeatures = [ ];
|
supportedFeatures = [
|
||||||
|
"nixos-test"
|
||||||
|
"big-parallel"
|
||||||
|
"kvm"
|
||||||
|
];
|
||||||
mandatoryFeatures = [ ];
|
mandatoryFeatures = [ ];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
nix.distributedBuilds = true;
|
nix.distributedBuilds = true;
|
||||||
nix.extraOptions = ''
|
nix.settings.builders-use-substitutes = true;
|
||||||
builders-use-substitutes = true
|
nix.settings.trusted-substituters = [
|
||||||
'';
|
"ssh-ng://nemo.aarn.patagia.dev"
|
||||||
|
];
|
||||||
|
|
||||||
system.stateVersion = "24.05"; # Did you read the comment?
|
system.stateVersion = "24.05"; # Did you read the comment?
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue