From 6d559e0f995e789f6cd51b2cf4da9a5c8a22249b Mon Sep 17 00:00:00 2001 From: Luna Simons Date: Wed, 5 Jun 2024 17:42:20 +0200 Subject: [PATCH] feat(modules/home): gnome-keyring --- modules/home/default.nix | 1 + modules/home/gnome-keyring/default.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 modules/home/gnome-keyring/default.nix diff --git a/modules/home/default.nix b/modules/home/default.nix index 382981d..18273a0 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -3,6 +3,7 @@ firefox = import ./firefox; fish = import ./fish; git = import ./git; + gnome-keyring = import ./gnome-keyring; gpg = import ./gpg; helix = import ./helix; hyprland = import ./hyprland; diff --git a/modules/home/gnome-keyring/default.nix b/modules/home/gnome-keyring/default.nix new file mode 100644 index 0000000..5db5f0d --- /dev/null +++ b/modules/home/gnome-keyring/default.nix @@ -0,0 +1,7 @@ +{ + services.gnome-keyring.enable = true; + + home.persistence."/persist/home/bddvlpr".directories = [ + ".local/share/keyrings" + ]; +}