Files
stormwind-nixfiles/sshd.nix
RootHost-Stormwind b753ca4aec disable password auth
2025-01-13 02:27:44 +01:00

12 lines
138 B
Nix

{ config, pkgs, ... }:
{
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
};
};
}