From 1f0974bcae93a6c5dd2a3b22ee3fb8bad7af5bb5 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 3 Jun 2024 18:14:35 -0500 Subject: [PATCH] fix(nixps): update rbw config --- VERSION | 2 +- machines/nixps/home.nix | 4 ++++ src/machines/nixps/home.nw | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 10123a8c..73b1bef9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.16.3 \ No newline at end of file +8.16.4 \ No newline at end of file diff --git a/machines/nixps/home.nix b/machines/nixps/home.nix index 562d510b..44f670c1 100644 --- a/machines/nixps/home.nix +++ b/machines/nixps/home.nix @@ -32,7 +32,11 @@ programs.rbw = { enable = true; settings = { + base_url = "https://api.bitwarden.com/"; email = config.accounts.email.accounts.personal.address; + identity_url = "https://identity.bitwarden.com/"; + notifications_url = "https://notifications.bitwarden.com/"; + pinentry = pkgs.pinentry; }; }; services.picom.enable = true; diff --git a/src/machines/nixps/home.nw b/src/machines/nixps/home.nw index 19bfe955..04275858 100644 --- a/src/machines/nixps/home.nw +++ b/src/machines/nixps/home.nw @@ -49,7 +49,11 @@ home.packages = with pkgs; [ programs.rbw = { enable = true; settings = { + base_url = "https://api.bitwarden.com/"; email = config.accounts.email.accounts.personal.address; + identity_url = "https://identity.bitwarden.com/"; + notifications_url = "https://notifications.bitwarden.com/"; + pinentry = pkgs.pinentry; }; }; @