Disable endlessh

This commit is contained in:
hodasemi 2025-05-20 14:06:05 +02:00
parent 22feb4614a
commit f66af67fcc

View file

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