nix-config/hosts/traffic-stop-box/8/default.nix

14 lines
395 B
Nix
Raw Normal View History

2022-11-28 19:24:54 +01:00
{ self, ... }: {
imports = [
2022-11-28 19:40:14 +01:00
"${self}/hardware/rpi-3b-4b.nix"
2022-11-28 19:24:54 +01:00
];
services.openssh.extraConfig = ''
PubkeyAcceptedKeyTypes sk-ecdsa-sha2-nistp256@openssh.com,sk-ssh-ed25519@openssh.com,ssh-ed25519,ssh-rsa,rsa-sha2-256,rsa-sha2-512
'';
users.users.root.openssh.authorizedKeys.keys = [
];
2022-12-30 18:29:13 +01:00
deployment-TLMS.net.wg.publicKey = "dL9JGsBhaTOmXgGEH/N/GCHbQgVHEjBvIMaRtCsHBHw=";
2022-11-28 19:24:54 +01:00
}