20 lines
453 B
Nix
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;
|
|
};
|
|
}
|