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

24 lines
333 B
Nix
Raw Normal View History

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