infrastructure/services/taskserver.nix
2021-04-27 22:34:22 +01:00

14 lines
237 B
Nix

{ config, lib, ... }:
with lib;
{
katnet.public.tcp.ports = singleton 53589;
services.taskserver = {
enable = true;
fqdn = "kittywit.ch";
listenHost = "::";
organisations.kittywitch.users = singleton "kat";
};
}