summaryrefslogtreecommitdiff
path: root/modules/kde-connect.nix
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2023-08-30 22:56:23 +0200
committerDevin Finlinson <devin.finlinson@pm.me>2023-08-30 22:56:23 +0200
commite68f05c78c57d2d719929b42e9659511d14af455 (patch)
tree15170de3c0e796b40b51674ef59a6dc122f8f7b9 /modules/kde-connect.nix
Creating initial commit.
Diffstat (limited to 'modules/kde-connect.nix')
-rw-r--r--modules/kde-connect.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/kde-connect.nix b/modules/kde-connect.nix
new file mode 100644
index 0000000..3705c44
--- /dev/null
+++ b/modules/kde-connect.nix
@@ -0,0 +1,7 @@
+{ config, lib, ... }: {
+ networking.firewall = {
+ allowedTCPPortRanges = [ { from = 1714; to = 1764; } ];
+ allowedUDPPortRanges = [ { from = 1714; to = 1764; } ];
+ };
+ programs.kdeconnect.enable = true;
+}