universe/hosts/common/services/openssh.nix

10 lines
144 B
Nix
Raw Normal View History

2025-03-02 19:00:20 +00:00
{...}: {
services.openssh = {
enable = true;
ports = [22 48001];
settings = {
PasswordAuthentication = false;
};
};
}