nixos-config/hosts/dell-5590/home-manager/kdeconnect.nix

16 lines
295 B
Nix
Raw Normal View History

2023-06-12 12:30:21 +00:00
{ pkgs, ... }: {
2023-07-15 18:55:50 +00:00
services.kdeconnect = {
enable = true;
};
networking.firewall = {
enable = true;
allowedTCPPortRanges = [
{ from = 1714; to = 1764; } # KDE Connect
];
allowedUDPPortRanges = [
{ from = 1714; to = 1764; } # KDE Connect
];
};
2023-06-12 12:30:21 +00:00
}