aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/pass.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-10 19:43:47 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-10 19:43:47 -0800
commit381166f46cab1bb392d442e03006884c85c4b710 (patch)
treeed260900defa8364c2a26cbf73c36df0fc01f8d5 /users/fcuny/pass.nix
parentusers: more cleanup (diff)
downloadinfra-381166f46cab1bb392d442e03006884c85c4b710.tar.gz
home-manager: install password-store
Diffstat (limited to 'users/fcuny/pass.nix')
-rw-r--r--users/fcuny/pass.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/users/fcuny/pass.nix b/users/fcuny/pass.nix
new file mode 100644
index 0000000..9f133b5
--- /dev/null
+++ b/users/fcuny/pass.nix
@@ -0,0 +1,8 @@
+{ pkgs, persistence, lib, ... }:
+
+{
+ programs.password-store.enable = true;
+
+ programs.password-store.settings.PASSWORD_STORE_DIR =
+ "${config.xdg.dataHome}/password-store";
+}