Files
stormwind-nixfiles/sshd.nix

12 lines
138 B
Nix
Raw Normal View History

2025-01-13 00:46:22 +01:00
{ config, pkgs, ... }:
{
services.openssh = {
enable = true;
2025-01-13 02:27:44 +01:00
settings = {
PasswordAuthentication = false;
};
2025-01-13 00:46:22 +01:00
};
}