Files
haschel/modules/services.nix
T
2026-02-23 14:52:59 -07:00

14 lines
205 B
Nix

{ ... }:
{
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "prohibit-password";
PasswordAuthentication = false;
};
};
services.tailscale.enable = true;
}