1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00
Files
niveum/configs/fonts.nix
2019-10-26 19:44:22 +02:00

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";
};
};
};
}