System Gen52 @ 2025-05-29-21:59:17 by jonas@monolith

This commit is contained in:
Jonas Röger 2025-05-29 21:59:18 +02:00
parent b802414670
commit a78b17acbe

View File

@ -11,7 +11,19 @@ in {
};
config = lib.mkIf cfg.enable {
programs.kdeconnect.enable = true; # Already opens firewall for the needed ports
programs.kdeconnect.enable = true;
programs.kdeconnect.package = lib.mkForce pkgs.kdePackages.kdeconnect-kde;
networking.firewall.allowedTCPPortRanges = [
{
from = 1714;
to = 1764;
}
];
networking.firewall.allowedUDPPortRanges = [
{
from = 1714;
to = 1764;
}
];
};
}