15 lines
264 B
Nix
15 lines
264 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.homeManager.bitwarden =
|
|
{ pkgs, ... }:
|
|
{
|
|
programs.rbw = {
|
|
enable = true;
|
|
settings = {
|
|
base_url = "https://vault.jelles.net";
|
|
pinentry = pkgs.pinentry-gnome3;
|
|
};
|
|
};
|
|
};
|
|
}
|