mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
14 lines
247 B
Nix
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";
|
|
};
|
|
}
|