forked from pub-solar/infra
10 lines
180 B
Nix
10 lines
180 B
Nix
{ config, ... }:
|
|
{
|
|
services.tmate-ssh-server = {
|
|
enable = true;
|
|
port = 2222;
|
|
openFirewall = true;
|
|
host = "tmate.${config.pub-solar-os.networking.domain}";
|
|
};
|
|
}
|