feat: add blackbox config and remove vscodium

This commit is contained in:
Jo 2024-12-24 16:56:28 +01:00
parent 2de665b3c6
commit d543faff8c
3 changed files with 29 additions and 31 deletions

View file

@ -0,0 +1,23 @@
{
lib,
config,
namespace,
...
}:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.${namespace}.themes.catppuccin.black-box;
in
{
options.${namespace}.themes.catppuccin.black-box = {
enable = mkEnableOption "Whether to enable the catppuccin theme for black-box.";
};
config = mkIf cfg.enable {
dconf.settings = {
"com/raggesilver/BlackBox" = {
theme-dark = "Catppuccin Macchiato";
};
};
};
}