🔧 use ipv6 for taskwarrior

This commit is contained in:
Ingolf Wagner 2025-04-22 11:42:41 +02:00
commit 706f0a52c1
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B

View file

@ -8,8 +8,9 @@
{
healthchecks.closed.public.ports.taskchampion = [ config.services.taskchampion-sync-server.port ];
healthchecks.http.taskchampion = {
url = "http://orbi.private:10222";
url = "http://orbi.bear:${toString config.services.taskchampion-sync-server.port}";
expectedContent = "TaskChampion sync server";
};
@ -19,10 +20,14 @@
networking.firewall.interfaces.wg0.allowedUDPPorts = [
config.services.taskchampion-sync-server.port
];
networking.firewall.interfaces.${zerotierInterface}.allowedTCPPorts = [
config.services.taskchampion-sync-server.port
];
services.taskchampion-sync-server = {
enable = true;
openFirewall = false;
host = "[::]";
};
}