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; + }; +}