universe/hosts/common/services/openssh.nix
2025-03-03 00:00:20 +05:00

10 lines
144 B
Nix

{...}: {
services.openssh = {
enable = true;
ports = [22 48001];
settings = {
PasswordAuthentication = false;
};
};
}