Files
lux/modules/capabilities/passwords.nix
T
2026-06-23 21:23:35 +02:00

29 lines
458 B
Nix

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