stupidcomputer
b7d5dff2e4
when executing rbw, pinentry complains about a lack of terminal size. if you remove the terminal, it can't be too small, right?
13 lines
224 B
Nix
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";
|
|
};
|
|
};
|
|
}
|