blob: b9110dee8000503b379905d7729295b64f42d90c (
plain)
1
2
3
4
5
6
|
{pkgs, ... }:
{
environment.systemPackages = with pkgs; [ kdeconnect ];
networking.firewall.allowedUDPPortRanges = [ { from = 1714; to = 1764; } ];
networking.firewall.allowedTCPPortRanges = [ { from = 1714; to = 1764; } ];
}
|