nix/modules/nixos/kde-connect.nix

21 lines
270 B
Nix
Raw Normal View History

2023-10-20 09:31:24 -05:00
{
programs.kdeconnect = {
enable = true;
};
networking.firewall = {
allowedTCPPortRanges = [
{
from = 1714;
to = 1764;
}
];
allowedUDPPortRanges = [
{
from = 1714;
to = 1764;
}
];
};
}