11 lines
262 B
Nix
11 lines
262 B
Nix
|
{
|
||
|
services.taskserver = {
|
||
|
enable = true;
|
||
|
fqdn = "enklave.r";
|
||
|
listenHost = "::";
|
||
|
listenPort = 53589;
|
||
|
organisations.lass.users = [ "jeschli" ];
|
||
|
};
|
||
|
networking.firewall.allowedTCPPorts = [ 53589 ];
|
||
|
}
|