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 .config
mimeapps.list mimeapps.list
pulse/ pulse/
rbw
chromium/ 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, ... }: { lib, config, pkgs, home, ... }:
{ {
programs.rbw = { home.file = {
enable = true; ".config/rbw/config.json" = {
settings = { source = ../../.config/rbw/config.json;
base_url = "https://bitwarden.beepboop.systems";
email = "bit@beepboop.systems";
pinentry = pkgs.pinentry-gnome3;
}; };
}; };
} }