nixos-server-conf/shared/ssh.nix
2025-05-20 14:06:05 +02:00

17 lines
No EOL
334 B
Nix

{ config, lib, pkgs, modulesPath, ... }:
{
services = {
# endlessh = {
# enable = true;
# port = 22;
# };
openssh = {
enable = true;
ports = [ 22 23 ];
# settings = {
# AllowUsers = [ "dev" ];
# };
};
};
}