mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
1b7989336e
unified modules structure
17 lines
329 B
Nix
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''
|
|
];
|
|
};
|
|
}
|