Files
nixos/modules/home-manager/bitwarden.nix
Michael Thomson 004ccccc35 update
2026-02-05 10:11:53 -05:00

13 lines
248 B
Nix

{pkgs, ...}: {
programs = {
rbw = {
enable = true;
settings = {
email = "michael@michaelthomson.dev";
base_url = "https://bitwarden.michaelthomson.dev";
pinentry = pkgs.pinentry-tty;
};
};
};
}