15 lines
237 B
Nix
15 lines
237 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options = {
|
|
web-devicons.enable = lib.mkEnableOption "Enable web-devicons module";
|
|
};
|
|
config = lib.mkIf config.web-devicons.enable {
|
|
plugins.web-devicons = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|