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

13 lines
252 B
Nix
Raw Normal View History

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