Files
stormwind-nixfiles/sshd.nix

13 lines
160 B
Nix
Raw Permalink Normal View History

2025-01-13 00:46:22 +01:00
{ config, pkgs, ... }:
{
services.openssh = {
enable = true;
2025-04-07 12:45:31 +02:00
ports = [ 2222 ];
2025-01-13 02:27:44 +01:00
settings = {
PasswordAuthentication = false;
};
2025-01-13 00:46:22 +01:00
};
}