blob: 08733ce5d2f05a4b82910e802ecae87c65bb88eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
]);
};
}
|