niksos/hosts/chmura/ankisyncd.nix
jacekpoz 66c0883701 fix(nvim): change nvim nightly to a working one
just found out the old overlay (that was apparently unused) was archived
in 2020
2023-08-06 23:03:06 +02:00

12 lines
203 B
Nix

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