bitwarden

This commit is contained in:
2026-07-28 16:59:51 -03:00
parent a2d7391bbb
commit 1e14c57dc1
4 changed files with 49 additions and 3 deletions
@@ -0,0 +1,24 @@
{
lib,
config,
pkgs,
...
}:
{
options.custom = {
bitwarden.enable = lib.mkEnableOption "enable bitwarden - CLI password manager";
};
config = lib.mkIf config.custom.bitwarden.enable {
programs.rbw = {
enable = true;
settings = {
email = "me@joaoporta.com";
lock_timeout = 7200;
pinentry = pkgs.pinentry-gnome3;
base_url = "https://pass.joaoporta.com";
};
};
};
}