16 lines
256 B
Nix
16 lines
256 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs = {
|
|
rbw = {
|
|
enable = true;
|
|
settings = {
|
|
email = "michael@michaelthomson.dev";
|
|
base_url = "https://vaultwarden.michaelthomson.dev";
|
|
pinentry = pkgs.pinentry-tty;
|
|
};
|
|
};
|
|
};
|
|
}
|