10 lines
185 B
Nix
10 lines
185 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
services.tmate-ssh-server = {
|
||
|
enable = true;
|
||
|
host = config.networking.fqdn;
|
||
|
port = 42244;
|
||
|
openFirewall = true;
|
||
|
};
|
||
|
}
|