nixos-config/machines/orbi/service-taskchampion.nix
Ingolf Wagner 488a63db26
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 11m34s
🚧 taskwarrior-webui as podman container but not working as expected
2024-09-08 11:29:49 +07:00

23 lines
378 B
Nix

{
config,
lib,
pkgs,
zerotierInterface,
...
}:
{
networking.firewall.interfaces.wg0.allowedTCPPorts = [
config.services.taskchampion-sync-server.port
];
networking.firewall.interfaces.wg0.allowedUDPPorts = [
config.services.taskchampion-sync-server.port
];
services.taskchampion-sync-server = {
enable = true;
openFirewall = false;
};
}