config.nix/modules/misc/bitwarden.nix
martyTF 5fa40025d0 we just gettin started
just a few more modules, like bitwarden, syncthing, screenshots
2025-12-20 05:59:46 +01:00

22 lines
328 B
Nix

{
config,
lib,
pkgs,
...
}:
{
options = {
misc = {
bitwarden.enable = lib.mkEnableOption "enable bitwarden";
};
};
config = lib.mkIf config.misc.bitwarden.enable {
home.packages = with pkgs; [
rbw
pinentry-curses
(lib.mkIf (config.desktop.rofi.enable) rofi-rbw)
];
};
}