Files
haschel/modules/services.nix
2026-02-06 18:30:57 -07:00

14 lines
219 B
Nix

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