dots/users/price/conf/password-store/default.nix
Price Hiller a388e85676
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m5s
feat(nix/hm/price): add pass-file extension to pass
2024-05-28 17:37:53 -05:00

13 lines
220 B
Nix

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