summaryrefslogtreecommitdiff
path: root/hm/soft/kdeconnect.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hm/soft/kdeconnect.nix')
-rw-r--r--hm/soft/kdeconnect.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/hm/soft/kdeconnect.nix b/hm/soft/kdeconnect.nix
new file mode 100644
index 0000000..07a5d9e
--- /dev/null
+++ b/hm/soft/kdeconnect.nix
@@ -0,0 +1,15 @@
+{ config, lib, pkgs, ... }:
+let
+ cfg = config.hm.soft.kdeconnect;
+in
+{
+ options.hm.soft.kdeconnect.enable = lib.mkEnableOption "enables kde connect integration and dolphin";
+
+ config = lib.mkIf cfg.enable {
+ services.kdeconnect.enable = true;
+
+ home.packages = [
+ pkgs.kdePackages.dolphin
+ ];
+ };
+}