nix-config/hosts/laptop-wohnzimmer/ssh.nix
2026-06-13 23:18:18 +02:00

11 lines
164 B
Nix

{
services.openssh = {
enable = true;
openFirewall = true;
settings = {
PermitRootLogin = "no";
AllowUsers = [ "moritz" ];
};
};
}