12 lines
252 B
Nix
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;
|
|
};
|
|
};
|
|
}
|