mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-19 02:13:06 +01:00
23 lines
447 B
Nix
23 lines
447 B
Nix
{
|
|
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";
|
|
};
|
|
};
|
|
};
|
|
}
|