Files
nixos-conf/system/services/openssh.nix
2025-10-27 13:09:00 -06:00

9 lines
127 B
Nix

{config, pkgs, ...}:
{
services.openssh = {
enable = true;
passwordAuthentication = true;
ports = [2022];
};
}