hosts: *: fix typos remoteClient/Builder

This commit is contained in:
Kabbone 2023-09-23 21:30:52 +02:00
parent a4debe09ee
commit 71b0244fb7
Signed by: Kabbone
SSH Key Fingerprint: SHA256:A5zPB5I6u5V78V51c362BBdCwhDhfDUVbt7NfKdjWBY
2 changed files with 6 additions and 3 deletions

View File

@ -11,4 +11,7 @@
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILczsj4W1kFQaalFwaY+RJ4LEzNeFKD+itXB40Q2O59M nixremote@hades"
];
};
nix.settings.trusted-users = [
"nixremote"
];
}

View File

@ -8,17 +8,17 @@
hostName = "hades";
system = "x86_64-linux";
supportedFeatures = [ "kvm" "big-parallel" ];
sshUser = "nixremote"
sshUser = "nixremote";
sshKey = config.age.secrets."keys/nixremote".path;
maxJobs = 1;
speedFactor = 8;
publicHostKey = "c3NoLWVkMjU1MTkgQUFBQUMzTnphQzFsWkRJMU5URTVBQUFBSUVnbld5UVVVYSt2Y0hBS3g2ZWRiVGdxVzhwaCtNQ2lTNmZVd1lqWWNTK28gcm9vdEBoYWRlcwo=%";
protocol = "ssh-ng";
] };
} ];
};
age.secrets."keys/nixremote" = {
file = ../../../secrets/keys/nixremote.age;
file = ../../secrets/keys/nixremote.age;
owner = "root";
};
}