From c0f30ad27a3297e937d861348f61e211ca3c63ce Mon Sep 17 00:00:00 2001 From: FredzyW Date: Mon, 3 Jun 2024 13:34:22 +0200 Subject: [PATCH] Added Bitwarden --- moduler/common/rbw.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 moduler/common/rbw.nix diff --git a/moduler/common/rbw.nix b/moduler/common/rbw.nix new file mode 100644 index 0000000..670248a --- /dev/null +++ b/moduler/common/rbw.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: +{ + programs.rbw = { + enable = true; + settings = { + email = "fredrik@wastring.com"; + pinentry = pkgs.pinentry; + url = "https://pass.wastring.com"; + }; + }; +}