nix/home-manager/common/software/cli/rbw.nix
2024-06-26 13:55:48 +09:00

12 lines
252 B
Nix

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