diff --git a/home/profiles/graphical/kdeconnect.nix b/home/profiles/graphical/kdeconnect.nix new file mode 100644 index 00000000..add7fcc5 --- /dev/null +++ b/home/profiles/graphical/kdeconnect.nix @@ -0,0 +1,6 @@ +_: { + services.kdeconnect = { + enable = true; + indicator = true; + }; +} diff --git a/nixos/profiles/graphical/kdeconnect.nix b/nixos/profiles/graphical/kdeconnect.nix new file mode 100644 index 00000000..f590ec16 --- /dev/null +++ b/nixos/profiles/graphical/kdeconnect.nix @@ -0,0 +1,11 @@ +_: { + networking.firewall = rec { + allowedTCPPortRanges = [ + { + from = 1714; + to = 1764; + } + ]; + allowedUDPPortRanges = allowedTCPPortRanges; + }; +}