zaphyra's git: nixfiles

zaphyra's nixfiles

commit a748218ead090522c724b985914dbbef3694f9f3
parent 2c1880a391a2ce43e96146df9188f6bd71dc66bb
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Sun, 24 Aug 2025 19:17:51 +0200

config/home-manager/zaphyra/services: add `dssd`
2 files changed, 19 insertions(+), 1 deletion(-)
diff --git a/config/home-manager/zaphyra/configure/niri.nix b/config/home-manager/zaphyra/configure/niri.nix
@@ -18,7 +18,7 @@ in
     with homeManagerModules.zaphyra;
     [
       services.niri
-      services.gnome-keyring
+      services.dssd
       services.batsignal
       services.wpaperd
       services.shaderbg
diff --git a/config/home-manager/zaphyra/services/dssd.nix b/config/home-manager/zaphyra/services/dssd.nix
@@ -0,0 +1,18 @@
+{
+  config,
+  lib,
+  pkgs,
+  ...
+}:
+{
+
+  home.persistence."/nix/persist/home/${config.home.username}".directories = [
+    "dssd/.local/state/dssd"
+  ];
+
+  services = {
+    dssd.enable = true;
+    gnome-keyring.enable = lib.mkForce false;
+  };
+
+}