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

22 lines
314 B
Nix
Raw Normal View History

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