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