flake/configs/server.nix

16 lines
302 B
Nix
Raw Normal View History

2024-05-12 13:33:15 +02:00
{
2024-06-20 16:49:12 +02:00
services = {
tailscale.extraUpFlags = ["--advertise-exit-node"];
openssh = {
enable = true;
settings = {
PermitRootLogin = "no";
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
X11Forwarding = false;
};
};
};
2024-05-12 13:33:15 +02:00
}