stockholm/makefu/2configs/kdeconnect.nix

7 lines
232 B
Nix
Raw Normal View History

2020-06-17 07:51:37 +00:00
{pkgs, ... }:
{
2023-06-03 13:34:18 +00:00
environment.systemPackages = with pkgs; [ kdeconnect ];
networking.firewall.allowedUDPPortRanges = [ { from = 1714; to = 1764; } ];
networking.firewall.allowedTCPPortRanges = [ { from = 1714; to = 1764; } ];
2020-06-17 07:51:37 +00:00
}