bw email hypl

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-04-17 19:49:43 +02:00
parent b93a75fa97
commit 91fccbf390
7 changed files with 114 additions and 70 deletions

View File

@@ -0,0 +1,32 @@
{ config, pkgs, secrets, ... }:
{
home.packages = with pkgs; [
bitwarden
bitwarden-cli
];
home.file.".config/Bitwarden CLI/data.json".text = ''
{
"stateVersion": 9,
"global": {
"theme": "system",
"window": {},
"environmentUrls": {
"base": "https://pw.nx2.site",
"api": null,
"identity": null,
"webVault": null,
"icons": null,
"notifications": null,
"events": null,
"keyConnector": null
},
"region": "Self-hosted",
"installedVersion": "2023.12.0"
}
}
'';
home.sessionVariables.BW_SESSION = secrets.bitwarden.env.bw-session;
}