From 0fef01bfe63dc0ffa2b6cc0837bfb345fbb0b330 Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Sun, 12 Oct 2025 22:12:20 -0700 Subject: [PATCH] feat: kdeCONNEEEEEEEEEECT --- home/profiles/graphical/kdeconnect.nix | 6 ++++++ nixos/profiles/graphical/kdeconnect.nix | 11 +++++++++++ 2 files changed, 17 insertions(+) create mode 100644 home/profiles/graphical/kdeconnect.nix create mode 100644 nixos/profiles/graphical/kdeconnect.nix 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; + }; +}