infrastructure/config/services/taskserver/default.nix
2021-08-18 02:25:15 +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";
};
}