13 lines
226 B
Nix
13 lines
226 B
Nix
|
{ lib, config, pkgs, home, ... }:
|
||
|
|
||
|
{
|
||
|
programs.rbw = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
base_url = "https://bitwarden.beepboop.systems";
|
||
|
email = "bit@beepboop.systems";
|
||
|
pinentry = "curses";
|
||
|
};
|
||
|
};
|
||
|
}
|