dinky: update remote builder config

This commit is contained in:
Daniel Lundin 2024-10-15 18:12:56 +02:00
parent 79cbb2462a
commit 8d7ebd3656
Signed by: dln
SSH key fingerprint: SHA256:dQy1Xj3UiqJYpKR5ggQ2bxgz4jCH8IF+k3AB8o0kmdI

View file

@ -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?
} }