summaryrefslogtreecommitdiff
path: root/hm/soft/kdeconnect.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-12-20 15:25:38 +0100
committeradikro <adikro@disroot.org>2025-12-20 15:25:38 +0100
commitc1d9af57156f3c95590d9a12c394ee064df9696e (patch)
tree7e515761590c510c30329ef8548c7d84a8e95aaa /hm/soft/kdeconnect.nix
parent791bc419b6dac7c70951981ef6b34cdf85828470 (diff)
added disko config for laptop, added storage and memory modules
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
+ ];
+ };
+}