Price Hiller
1158f450dc
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
12 lines
287 B
Nix
12 lines
287 B
Nix
{ 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";
|
|
};
|
|
};
|
|
}
|