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