This commit is contained in:
2025-02-09 15:14:08 +02:00
parent d4993225d2
commit c435dab9c9

View File

@ -0,0 +1,12 @@
{
lib,
config,
...
}: {
options = {
onedark.enable = lib.mkEnableOption "Enable onedark module";
};
config = lib.mkIf config.onedark.enable {
colorschemes.onedark.enable = true;
};
}