nixos-configuration/hetzner-vpn1.nix

17 lines
315 B
Nix
Raw Normal View History

2023-09-10 14:12:01 +02:00
{...}: {
imports = [
2023-09-11 19:16:26 +02:00
./modules/server
(import ./modules/hardware "hetzner-vpn1")
2023-09-10 14:12:01 +02:00
];
config = {
my = {
server.enable = true;
};
2023-09-11 19:16:26 +02:00
2023-09-10 14:12:01 +02:00
users.users.root.openssh.authorizedKeys.keys = [
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICdYqY3Y1/f1bsAi5Qfyr/UWuX9ixu96IeAlhoQaJkbf''
];
};
}