nix-config/modules/fonts.nix

50 lines
781 B
Nix
Raw Permalink Normal View History

2025-01-26 01:39:08 +01:00
{ 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
2025-02-15 16:43:48 +01:00
cozette
2025-02-18 09:54:31 +01:00
(nerdfonts.override {
fonts = [
"Hack"
"3270"
];
})
2025-01-26 01:39:08 +01:00
];
fonts.enableDefaultPackages = true;
fonts.fontconfig = {
enable = true;
allowBitmaps = true;
useEmbeddedBitmaps = true;
defaultFonts.emoji = [
"Twitter Color Emoji"
"Noto Color Emoji"
];
};
}