move rbw from hm config to .config for phone

This commit is contained in:
stupidcomputer 2024-11-04 00:50:54 -06:00
parent a03d535034
commit 3edb488963
3 changed files with 9 additions and 7 deletions

1
.config/.gitignore vendored
View File

@ -1,5 +1,4 @@
.config
mimeapps.list
pulse/
rbw
chromium/

6
.config/rbw/config.json Normal file
View File

@ -0,0 +1,6 @@
{
"base_url": "https://bitwarden.beepboop.systems",
"email": "bit@beepboop.systems",
"identity_url": null,
"lock_timeout": 3600
}

View File

@ -1,12 +1,9 @@
{ lib, config, pkgs, home, ... }:
{
programs.rbw = {
enable = true;
settings = {
base_url = "https://bitwarden.beepboop.systems";
email = "bit@beepboop.systems";
pinentry = pkgs.pinentry-gnome3;
home.file = {
".config/rbw/config.json" = {
source = ../../.config/rbw/config.json;
};
};
}