infra/modules/tmate/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
180 B
Nix
Raw Normal View History

{ config, ... }:
{
services.tmate-ssh-server = {
enable = true;
port = 2222;
openFirewall = true;
host = "tmate.${config.pub-solar-os.networking.domain}";
};
}