Files
stormwind-nixfiles/sshd.nix
RootHost-Stormwind da0535eb09 drives helix and broot
2025-04-07 12:45:31 +02:00

13 lines
160 B
Nix

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