1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/configs/fonts.nix

27 lines
545 B
Nix
Raw Normal View History

2019-04-19 15:02:05 +02:00
{ pkgs, ... }:
{
niveum.fonts = {
ui = {
name = "Sans";
size = 9;
};
terminal = {
name = "Monospace";
size = 9;
};
};
fonts = {
enableDefaultFonts = true;
2019-07-06 15:08:22 +02:00
enableFontDir = true;
2019-09-24 23:31:22 +02:00
fonts = with pkgs; [ inconsolata corefonts eb-garamond fira libertine lmodern noto-fonts roboto roboto-mono roboto-slab ubuntu_font_family ];
fontconfig = {
defaultFonts.monospace = [ "Inconsolata" ];
ultimate = {
enable = true;
substitutions = "combi";
};
};
2019-04-19 15:02:05 +02:00
};
}