Jafner.net/nix/home-manager/app/bitwarden/bitwarden.nix

29 lines
608 B
Nix
Raw Normal View History

{ pkgs, pkgs-unstable, ... }:
{
home.packages = with pkgs; [
2024-10-16 21:37:21 -07:00
rofi-rbw-wayland
rbw
pinentry-rofi
pinentry-all
];
2024-10-16 21:37:21 -07:00
home.file = {
rbw-config = {
target = ".config/rbw/config.json";
text = ''
{
"email": "jafner425@gmail.com",
"sso_id": null,
"base_url": "https://bitwarden.jafner.tools",
"identity_url": null,
"ui_url": null,
"notifications_url": null,
"lock_timeout": 3600,
"sync_interval": 3600,
"pinentry": "pinentry-curses",
"client_cert_path": null
}
'';
};
};
}