mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
54 lines
1.0 KiB
Nix
54 lines
1.0 KiB
Nix
{pkgs, ...}: {
|
|
nixpkgs.config.joypixels.acceptLicense = true;
|
|
fonts = {
|
|
enableDefaultFonts = true;
|
|
fontDir.enable = true;
|
|
fonts = with pkgs; [
|
|
alegreya
|
|
alegreya-sans
|
|
amiri
|
|
cantarell-fonts
|
|
charis-sil
|
|
corefonts
|
|
crimson
|
|
eb-garamond
|
|
etBook
|
|
fira
|
|
font-awesome-ttf
|
|
gentium
|
|
gfs-fonts
|
|
gyre-fonts
|
|
ia-writer-duospace
|
|
ibm-plex
|
|
jetbrains-mono
|
|
joypixels
|
|
libertinus
|
|
libre-bodoni
|
|
lmodern
|
|
merriweather
|
|
noto-fonts
|
|
ocr-a
|
|
roboto
|
|
roboto-mono
|
|
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 = let
|
|
emojiFont = "JoyPixels";
|
|
in {
|
|
monospace = ["JetBrains Mono" emojiFont];
|
|
serif = ["Merriweather"];
|
|
sansSerif = ["Cantarell" emojiFont];
|
|
emoji = [emojiFont];
|
|
};
|
|
};
|
|
}
|