2024-05-29 00:15:26 -05:00
|
|
|
{ pkgs, config, ... }:
|
2024-05-28 16:54:32 -05:00
|
|
|
{
|
|
|
|
programs.password-store = {
|
|
|
|
enable = true;
|
2024-05-28 18:48:59 -05:00
|
|
|
package = pkgs.pass.withExtensions (exts: [ exts.pass-file ]);
|
2024-05-28 16:54:32 -05:00
|
|
|
settings = {
|
|
|
|
PASSWORD_STORE_KEY = "C3FADDE7A8534BEB";
|
2024-05-29 00:15:26 -05:00
|
|
|
PASSWORD_STORE_DIR = "${config.xdg.dataHome}/password-store";
|
2024-05-28 16:54:32 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|