diff options
author | Franck Cuny <franck@fcuny.net> | 2023-02-20 13:14:25 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-02-20 13:48:42 -0800 |
commit | c009cb1b80aa48a4d2d26f6b4b74cf8d7244b4e5 (patch) | |
tree | dd0ad423295a08956d7395c4004ee495d9780450 | |
parent | ref(home/gpg): don't use the gpg-agent as an ssh-agent (diff) | |
download | world-c009cb1b80aa48a4d2d26f6b4b74cf8d7244b4e5.tar.gz |
feat(home/pass): add passage
Port of `pass' to use `age' instead of `gpg'.
Diffstat (limited to '')
-rw-r--r-- | home/pass/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/home/pass/default.nix b/home/pass/default.nix index c3e06f6..c1994f8 100644 --- a/home/pass/default.nix +++ b/home/pass/default.nix @@ -16,6 +16,16 @@ in }; }; + + home.sessionVariables = { + PASSAGE_DIR = "${config.xdg.dataHome}/passage/store"; + }; + + home.packages = with pkgs; [ + passage + tree + ]; + programs.git = { extraConfig = { credential = { |