9 lines
173 B
Nix
9 lines
173 B
Nix
|
{config, ...}: {
|
||
|
imports = [../modules/tmate-ssh-server.nix];
|
||
|
services.tmate = {
|
||
|
enable = true;
|
||
|
openFirewall = true;
|
||
|
sshHostname = "tmate.jfdic.org";
|
||
|
};
|
||
|
}
|