From 02225c295a37b918e77feb122355c17ea5bacf5c Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Sun, 21 Jul 2024 13:44:30 +0200 Subject: [PATCH] Add Kde Connect --- modules/core/programs.nix | 1 + modules/home/default.nix | 1 + modules/home/kdeconnect.nix | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 modules/home/kdeconnect.nix diff --git a/modules/core/programs.nix b/modules/core/programs.nix index 8d3ec88..07b9407 100644 --- a/modules/core/programs.nix +++ b/modules/core/programs.nix @@ -13,4 +13,5 @@ programs.nix-ld.enable = true; programs.nix-ld.libraries = with pkgs; []; programs.adb.enable = true; + programs.kdeconnect.enable = true; } diff --git a/modules/home/default.nix b/modules/home/default.nix index b9e8828..9a2ce67 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -15,6 +15,7 @@ ++ [(import ./git.nix)] # version control ++ [(import ./gtk.nix)] # gtk theme ++ [(import ./hyprland)] # window manager + ++ [(import ./kdeconnect.nix)] ++ [(import ./kitty.nix)] # terminal ++ [(import ./swaync/swaync.nix)] # notification deamon ++ [(import ./nextcloud.nix)] # nextcloud client diff --git a/modules/home/kdeconnect.nix b/modules/home/kdeconnect.nix new file mode 100644 index 0000000..338f2b5 --- /dev/null +++ b/modules/home/kdeconnect.nix @@ -0,0 +1,6 @@ +{pkgs, ...}: { + services.kdeconnect = { + enable = true; + indicator = true; + }; +}