hermitcollective-nix-server/system/ssh.nix
Jan van der Weide 6871d333f6 REPO MIGRATED
2025-02-11 14:15:02 +01:00

12 lines
213 B
Nix

{ # Enable and configure openssh
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
PermitRootLogin = "no";
X11Forwarding = false;
};
};
}