nixos-configuration/hetzner-vpn1.nix

22 lines
514 B
Nix
Raw Normal View History

2023-10-02 17:14:20 +02:00
{...}: {
2023-09-10 14:12:01 +02:00
imports = [
(import ./modules {
hostName = "hetzner-vpn1";
enableHomeManager = false;
})
2023-09-10 14:12:01 +02:00
];
config = {
2023-09-24 14:59:21 +02:00
my = {
enabledUsers = [];
server.enable = true;
2023-12-04 22:45:50 +01:00
tailscale.enable = true;
2023-09-24 14:59:21 +02:00
};
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''
2023-12-05 14:50:19 +01:00
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFCJUpbpB3KEKVoKWsKoar9J4RNah8gmQoSH6jQEw5dY vinzenz-pixel-JuiceSSH''
2023-09-10 14:12:01 +02:00
];
};
}