mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 10:30:14 +01:00
17 lines
315 B
Nix
17 lines
315 B
Nix
{...}: {
|
|
imports = [
|
|
./modules/server
|
|
(import ./modules/hardware "hetzner-vpn1")
|
|
];
|
|
|
|
config = {
|
|
my = {
|
|
server.enable = true;
|
|
};
|
|
|
|
users.users.root.openssh.authorizedKeys.keys = [
|
|
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICdYqY3Y1/f1bsAi5Qfyr/UWuX9ixu96IeAlhoQaJkbf''
|
|
];
|
|
};
|
|
}
|