19 lines
425 B
Nix
19 lines
425 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
../gpg/default.nix
|
||
|
../shell/git.nix
|
||
|
];
|
||
|
programs = {
|
||
|
gpg.enable = true;
|
||
|
password-store = {
|
||
|
enable = true;
|
||
|
package = pkgs.pass-nodmenu.withExtensions (exts: with exts; [ pass-update ]);
|
||
|
settings = {
|
||
|
PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store";
|
||
|
PASSWORD_STORE_ENABLE_EXTENSIONS = "true";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|