mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
14 lines
236 B
Nix
14 lines
236 B
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
kw.fw.public.tcp.ports = singleton 53589;
|
|
|
|
services.taskserver = {
|
|
enable = true;
|
|
fqdn = "kittywit.ch";
|
|
listenHost = "::";
|
|
organisations.kittywitch.users = singleton "kat";
|
|
};
|
|
}
|