43 lines
730 B
Nix
43 lines
730 B
Nix
{ pkgs, ... }:
|
|
{
|
|
fonts.packages = with pkgs; [
|
|
monoid
|
|
font-awesome
|
|
dejavu_fonts
|
|
julia-mono
|
|
uw-ttyp0
|
|
gohufont
|
|
spleen
|
|
terminus_font
|
|
creep
|
|
corefonts
|
|
dina-font
|
|
fira
|
|
fira-mono
|
|
hack-font
|
|
liberation_ttf
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-emoji
|
|
noto-fonts-extra
|
|
proggyfonts
|
|
symbola
|
|
open-sans
|
|
twemoji-color-font
|
|
twitter-color-emoji
|
|
iosevka-bin
|
|
(nerdfonts.override { fonts = [ "Hack" ]; })
|
|
];
|
|
|
|
fonts.enableDefaultPackages = true;
|
|
fonts.fontconfig = {
|
|
enable = true;
|
|
allowBitmaps = true;
|
|
useEmbeddedBitmaps = true;
|
|
defaultFonts.emoji = [
|
|
"Twitter Color Emoji"
|
|
"Noto Color Emoji"
|
|
];
|
|
};
|
|
|
|
}
|