{ lib, pkgs, config, ... }: { options.enableFonts = lib.mkEnableOption "Enable nerd fonts"; config = lib.mkIf (config.enableFonts or false) { fonts.packages = with pkgs; [ nerd-fonts.iosevka nerd-fonts.fira-code ]; }; }