zaphyra's git: nixfiles

zaphyra's nixfiles

commit cc36dfb3f5a53926db795a96d2db7b37e06063f5
parent f52b760260b3ca00cd7b0727cdf2f815a94c2042
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Tue, 1 Jul 2025 11:40:46 +0200

config/home/zaphyra/programs: add `gnome-obfuscate`
2 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/config/home/zaphyra/programs/gnome-obfuscate.nix b/config/home/zaphyra/programs/gnome-obfuscate.nix
@@ -0,0 +1,9 @@
+{ pkgs, ... }:
+
+{
+
+  home.packages = with pkgs; [
+    gnome-obfuscate
+  ];
+
+}
diff --git a/config/home/zaphyra/services/gnome-keyring.nix b/config/home/zaphyra/services/gnome-keyring.nix
@@ -0,0 +1,15 @@
+{ config, ... }:
+
+{
+
+
+  home.persistence."/nix/persist/home/${config.home.username}".directories = [
+    "keyring/.local/share/keyrings"
+  ];
+
+  services.gnome-keyring = {
+    enable = true;
+    components = [ "pkcs11" "secrets" ];
+  };
+
+}