diff --git a/.config/.gitignore b/.config/.gitignore index 3482c75..6ec88c1 100644 --- a/.config/.gitignore +++ b/.config/.gitignore @@ -1,5 +1,4 @@ .config mimeapps.list pulse/ -rbw chromium/ diff --git a/.config/rbw/config.json b/.config/rbw/config.json new file mode 100644 index 0000000..8f18c83 --- /dev/null +++ b/.config/rbw/config.json @@ -0,0 +1,6 @@ +{ + "base_url": "https://bitwarden.beepboop.systems", + "email": "bit@beepboop.systems", + "identity_url": null, + "lock_timeout": 3600 +} diff --git a/home/rbw/default.nix b/home/rbw/default.nix index 90bb3f9..16b0f79 100644 --- a/home/rbw/default.nix +++ b/home/rbw/default.nix @@ -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; }; }; }