nix/graphical/password-manager.nix
2025-11-21 17:25:05 +11:00

20 lines
453 B
Nix

{ pkgs, lib, ... }:
{
user.xdg.config.files."rbw/config.json" = {
generator = lib.generators.toJSON { };
value = {
email = "boss@atagen.co";
pinentry = lib.getExe pkgs.pinentry-qt;
base_url = "https://vault.atagen.co";
};
};
# bitwarden ? element ?
nixpkgs.config.permittedInsecurePackages = [
"electron-36.9.5"
];
apps = with pkgs; {
passwordManager = bitwarden-desktop;
passwordCli = rbw;
};
}