mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{pkgs, ...}: {
|
|
fonts = {
|
|
enableDefaultFonts = true;
|
|
fontDir.enable = true;
|
|
fonts = with pkgs; [
|
|
alegreya
|
|
alegreya-sans
|
|
amiri
|
|
annapurna-sil
|
|
cantarell-fonts
|
|
charis-sil
|
|
corefonts
|
|
crimson
|
|
eb-garamond
|
|
font-awesome_6
|
|
etBook
|
|
ezra-sil
|
|
fira
|
|
font-awesome
|
|
galatia-sil
|
|
gentium
|
|
gfs-fonts
|
|
gyre-fonts
|
|
ibm-plex
|
|
jetbrains-mono
|
|
libertinus
|
|
libre-bodoni
|
|
lmodern
|
|
merriweather
|
|
ocr-a
|
|
roboto
|
|
roboto-mono
|
|
noto-fonts
|
|
noto-fonts-cjk
|
|
noto-fonts-emoji
|
|
roboto-slab
|
|
scheherazade-new
|
|
source-code-pro
|
|
source-sans-pro
|
|
source-serif-pro
|
|
theano
|
|
tocharian-font
|
|
vistafonts
|
|
vollkorn
|
|
zilla-slab
|
|
]; # google-fonts league-of-moveable-type
|
|
fontconfig.defaultFonts = {
|
|
monospace = ["Noto Sans Mono"];
|
|
serif = ["Noto Serif" "Noto Naskh Arabic" "Noto Serif Devanagari"];
|
|
sansSerif = ["Noto Sans Display" "Noto Kufi Arabic" "Noto Sans Devanagari" "Noto Sans CJK JP"];
|
|
emoji = ["Noto Color Emoji" "Noto Emoji"];
|
|
};
|
|
};
|
|
}
|