dots/users/price/conf/password-store/default.nix
Price Hiller 2f9e7a94f6
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
refactor(nix): improve zsh compinit handling
2024-05-28 18:48:59 -05:00

11 lines
211 B
Nix

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