niksos/hosts/chmura/ankisyncd.nix

13 lines
203 B
Nix
Raw Normal View History

{
config,
pkgs,
...
}: {
services.ankisyncd = {
enable = true;
};
networking.firewall.allowedTCPPorts = [ 27701 ];
networking.firewall.allowedUDPPorts = [ 27701 ];
}