move kdeconnect settings to nixosModule

This commit is contained in:
Vinzenz Schroeter 2025-09-13 14:56:45 +02:00
parent a63f1c69c7
commit 16422ccbd7
7 changed files with 56 additions and 36 deletions

View file

@ -26,7 +26,6 @@
};
programs = {
kdeconnect.enable = true;
firefox = {
enable = true;
languagePacks = [
@ -59,25 +58,6 @@
};
};
networking = {
firewall = {
allowedTCPPortRanges = [
{
# KDE Connect / gsconnect
from = 1714;
to = 1764;
}
];
allowedUDPPortRanges = [
{
# KDE Connect / gsconnect
from = 1714;
to = 1764;
}
];
};
};
systemd = {
# save some boot time because nothing actually requires network connectivity
services.NetworkManager-wait-online.enable = false;