mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2026-04-28 15:38:57 +00:00
29 lines
451 B
Nix
29 lines
451 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.presets.languages.strudel;
|
|
in
|
|
{
|
|
options.presets.languages.strudel = {
|
|
enable = lib.mkEnableOption "Strudel";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
plugins = {
|
|
strudel.enable = true;
|
|
web-devicons.customIcons = {
|
|
str = {
|
|
icon = " ";
|
|
color = "#34E2E1";
|
|
cterm_color = "14";
|
|
name = "Strudel";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|