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

11 lines
195 B
Nix
Raw Normal View History

2024-03-04 01:36:45 +01:00
{ ... }: {
# Bitwarden CLI app
programs.rbw = {
enable = true;
base_url = "https://pass.sysctl.io";
email = "albert@sysctl.io";
lock_timeout = 3600;
settings = {};
};
}