mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
40 lines
709 B
Nix
40 lines
709 B
Nix
{ pkgs, ... }:
|
|
{
|
|
niveum.fonts.size = 9;
|
|
|
|
fonts = {
|
|
enableDefaultFonts = true;
|
|
enableFontDir = true;
|
|
fonts = with pkgs; [
|
|
corefonts
|
|
eb-garamond
|
|
fira
|
|
font-awesome-ttf
|
|
ibm-plex
|
|
inconsolata
|
|
iosevka
|
|
libertine
|
|
lmodern
|
|
noto-fonts
|
|
roboto
|
|
roboto-mono
|
|
roboto-slab
|
|
source-code-pro
|
|
source-serif-pro
|
|
ubuntu_font_family
|
|
gfs-fonts
|
|
];
|
|
fontconfig = {
|
|
defaultFonts = {
|
|
monospace = [ "Source Code Pro" ];
|
|
serif = [ "Source Serif Pro" ];
|
|
sansSerif = [ "IBM Plex" ];
|
|
};
|
|
ultimate = {
|
|
enable = true;
|
|
substitutions = "combi";
|
|
};
|
|
};
|
|
};
|
|
}
|