nix/home-manager/common/software/cli/rbw.nix
2024-03-04 09:47:31 +09:00

11 lines
207 B
Nix

{ ... }: {
# Bitwarden CLI app
programs.rbw = {
enable = true;
settings = {
base_url = "https://pass.sysctl.io";
email = "albert@sysctl.io";
lock_timeout = 3600;
};
};
}