summaryrefslogtreecommitdiff
path: root/home/pass.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-03-20 15:23:58 -0600
committerAlejandro Soto <alejandro@34project.org>2023-03-20 15:23:58 -0600
commit5c46d0165d1d413816a2054d711b38794a0a5aaa (patch)
treed8170d3359654b138f50bd3901fcfb9dd6730296 /home/pass.nix
parent46e58d709a17fc18236383ffe805023f6431ebbb (diff)
home/pass: initial commit
Diffstat (limited to 'home/pass.nix')
-rw-r--r--home/pass.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/home/pass.nix b/home/pass.nix
new file mode 100644
index 0000000..08733ce
--- /dev/null
+++ b/home/pass.nix
@@ -0,0 +1,13 @@
+{ config, lib, pkgs, ... }:
+with lib; {
+ config.programs.password-store = mkIf (!config.home.isolation.active) {
+ enable = true;
+ package = pkgs.pass.withExtensions (exts: [
+ exts.pass-audit
+ exts.pass-genphrase
+ exts.pass-import
+ exts.pass-tomb
+ exts.pass-update
+ ]);
+ };
+}