marleyos/modules/home/programs/rbw/default.nix

18 lines
284 B
Nix
Raw Normal View History

2024-11-16 19:36:30 -08:00
{
lib,
config,
...
}: let
cfg = config.marleyos.programs.rbw;
in {
options.marleyos.programs.rbw.enable = lib.mkEnableOption "rbw";
2024-11-16 19:36:30 -08:00
config = lib.mkIf cfg.enable {
2024-11-16 19:36:30 -08:00
programs.rbw = {
enable = true;
settings.email = "bitwarden@punkfairie.net";
};
};
}