infrastructure/config/services/taskserver.nix
2021-09-18 03:30:55 +01:00

14 lines
247 B
Nix

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