nixos-configuration/hetzner-vpn1.nix
Vinzenz Schroeter 1b7989336e convoluted solution looking for a problem
unified modules structure
2023-09-24 10:15:53 +02:00

17 lines
329 B
Nix

{pkgs, ...}: {
imports = [
(import ./modules {
hostName = "hetzner-vpn1";
enableDesktop = false;
})
];
config = {
my.server.enable = true;
users.users.root.openssh.authorizedKeys.keys = [
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICdYqY3Y1/f1bsAi5Qfyr/UWuX9ixu96IeAlhoQaJkbf''
];
};
}