dots/users/price/conf/password-store/default.nix

12 lines
287 B
Nix
Raw Permalink Normal View History

{ pkgs, config, ... }:
{
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [ exts.pass-file ]);
settings = {
PASSWORD_STORE_KEY = "C3FADDE7A8534BEB";
PASSWORD_STORE_DIR = "${config.xdg.dataHome}/password-store";
};
};
}