dot_testing/home/rbw/default.nix
stupidcomputer b7d5dff2e4 fix issue where rbw couldn't collect password from pinentry
when executing rbw, pinentry complains about a lack of terminal size. if
you remove the terminal, it can't be too small, right?
2024-04-10 17:08:10 -05:00

13 lines
224 B
Nix

{ lib, config, pkgs, home, ... }:
{
programs.rbw = {
enable = true;
settings = {
base_url = "https://bitwarden.beepboop.systems";
email = "bit@beepboop.systems";
# pinentry = "gtk";
};
};
}