15 lines
325 B
Nix
15 lines
325 B
Nix
{ lib, pkgs, config, ... }:
|
|
|
|
{
|
|
# Top-level toggle
|
|
options.enableFonts = lib.mkEnableOption "Enable nerd fonts";
|
|
|
|
# Config is only applied when the module is evaluated
|
|
config = lib.mkIf (config.enableFonts or false) {
|
|
fonts.packages = with pkgs; [
|
|
nerd-fonts.iosevka
|
|
nerd-fonts.fira-code
|
|
];
|
|
};
|
|
}
|