nixos-configuration/hetzner-vpn1.nix

17 lines
329 B
Nix
Raw Normal View History

{pkgs, ...}: {
2023-09-10 14:12:01 +02:00
imports = [
(import ./modules {
hostName = "hetzner-vpn1";
enableDesktop = false;
})
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''
];
};
}