Files
haschel/modules/services.nix
Atridad Lahiji 8a8df0e9f5
All checks were successful
Deploy NixOS / deploy (push) Successful in 33s
Fixed a bunch of warnings now that I have a working linter
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;
}