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

24 lines
341 B
Nix
Raw Normal View History

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