14 lines
237 B
Nix
14 lines
237 B
Nix
|
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
{
|
||
|
services = {
|
||
|
endlessh = {
|
||
|
enable = true;
|
||
|
port = 22;
|
||
|
};
|
||
|
|
||
|
openssh = {
|
||
|
enable = true;
|
||
|
ports = [ 23 ];
|
||
|
};
|
||
|
};
|
||
|
}
|