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

12 lines
207 B
Nix
Raw Normal View History

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-03-04 09:47:31 +09:00
};
2024-03-04 09:36:45 +09:00
};
}