22 lines
450 B
Nix
22 lines
450 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib.attrsets) attrValues;
|
|
in {
|
|
fonts.packages = attrValues {
|
|
inherit (pkgs)
|
|
material-design-icons
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-cjk-serif
|
|
noto-fonts-emoji
|
|
corefonts
|
|
vistafonts
|
|
;
|
|
nerdfonts = pkgs.nerdfonts.override {
|
|
fonts = [ "JetBrainsMono" ];
|
|
};
|
|
};
|
|
}
|