bitwarden
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
||||
options.custom = {
|
||||
bitwarden.enable = lib.mkEnableOption "enable bitwarden - CLI password manager";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.custom.bitwarden.enable {
|
||||
programs.rbw = {
|
||||
enable = true;
|
||||
settings = {
|
||||
email = "me@joaoporta.com";
|
||||
lock_timeout = 7200;
|
||||
pinentry = pkgs.pinentry-gnome3;
|
||||
base_url = "https://pass.joaoporta.com";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user