nixos-config/hosts/dell-5590/nixpkgs/kdeconnect.nix

16 lines
295 B
Nix

{ pkgs, ... }: {
services.kdeconnect = {
enable = true;
};
networking.firewall = {
enable = true;
allowedTCPPortRanges = [
{ from = 1714; to = 1764; } # KDE Connect
];
allowedUDPPortRanges = [
{ from = 1714; to = 1764; } # KDE Connect
];
};
}