config/profiles/services/tmate-server.nix

10 lines
185 B
Nix
Raw Normal View History

2023-03-03 21:57:37 +01:00
{ config, ... }:
{
services.tmate-ssh-server = {
enable = true;
host = config.networking.fqdn;
port = 42244;
openFirewall = true;
};
}