Files
lux/modules/features/bitwarden.nix
T
2026-04-25 00:19:20 +02:00

29 lines
443 B
Nix

{
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;
};
};
};
}