dotfiles/modules/home-manager/pass.nix
2024-09-22 11:48:49 +02:00

11 lines
274 B
Nix

{...}: {
programs.password-store = {
enable = true;
settings = {
PASSWORD_STORE_DIR = "$HOME/.password-store";
PASSWORD_STORE_GENERATED_LENGTH = "20";
PASSWORD_STORE_ENABLE_EXTENSIONS = "true";
};
};
programs.browserpass.enable = true;
}