{ config, ... }: let repo = config.repo; in { flake.modules.homeManager.bitwarden = { config, pkgs, ... }: let account = config.meta.user.account; in { programs.rbw = { enable = true; settings = { base_url = repo.services.vaultwarden.url; email = account.primaryEmail.address; pinentry = pkgs.pinentry-gnome3; }; }; }; }