Files
2026-05-06 21:57:58 +02:00

29 lines
454 B
Nix

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