10 lines
166 B
Nix
10 lines
166 B
Nix
|
{ config, pkgs, ... }:
|
||
|
let port = 2222;
|
||
|
in {
|
||
|
services.openssh = {
|
||
|
enable = true;
|
||
|
ports = [ port ];
|
||
|
};
|
||
|
networking.firewall.allowedTCPPorts = [ port ];
|
||
|
}
|