dots/users/price/conf/password-store/default.nix
Price Hiller 1158f450dc
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
refactor(nix/hm/price): clean up home dir paths
2024-05-29 00:15:26 -05:00

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";
};
};
}