mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
43 lines
846 B
Nix
43 lines
846 B
Nix
{pkgs, ...}: {
|
|
nixpkgs.config.joypixels.acceptLicense = true;
|
|
|
|
fonts = {
|
|
enableDefaultFonts = true;
|
|
fontDir.enable = true;
|
|
fonts = with pkgs; [
|
|
alegreya
|
|
alegreya-sans
|
|
corefonts
|
|
eb-garamond
|
|
fira
|
|
font-awesome-ttf
|
|
ibm-plex
|
|
inconsolata
|
|
iosevka
|
|
libertine
|
|
lmodern
|
|
noto-fonts
|
|
noto-fonts-cjk
|
|
noto-fonts-emoji
|
|
roboto
|
|
roboto-mono
|
|
roboto-slab
|
|
source-code-pro
|
|
source-serif-pro
|
|
source-sans-pro
|
|
ubuntu_font_family
|
|
gfs-fonts
|
|
jetbrains-mono
|
|
twemoji-color-font
|
|
joypixels
|
|
tocharian-font
|
|
];
|
|
fontconfig.defaultFonts = {
|
|
monospace = ["JetBrains Mono" "JoyPixels"];
|
|
serif = ["Roboto Slab"];
|
|
sansSerif = ["Roboto" "Noto Sans"];
|
|
emoji = ["JoyPixels"];
|
|
};
|
|
};
|
|
}
|