nix/home-manager/common/software/cli/rbw.nix

13 lines
252 B
Nix
Raw Normal View History

2024-06-26 06:55:48 +02:00
{ pkgs, ... }: {
2024-03-04 01:36:45 +01:00
# Bitwarden CLI app
programs.rbw = {
enable = true;
2024-03-04 01:46:31 +01:00
settings = {
base_url = "https://pass.sysctl.io";
email = "albert@sysctl.io";
lock_timeout = 3600;
2024-06-26 06:55:48 +02:00
pinentry = pkgs.pinentry-curses;
2024-03-04 01:47:31 +01:00
};
2024-03-04 01:36:45 +01:00
};
}