1
0
mirror of https://github.com/kmein/niveum synced 2026-03-22 04:41:07 +01:00

feat: the font revolution

This commit is contained in:
Kierán Meinhardt
2019-09-25 10:11:18 +02:00
parent 93c87be579
commit 6e41f78863
7 changed files with 31 additions and 27 deletions

View File

@@ -1,22 +1,34 @@
{ pkgs, ... }:
{
niveum.fonts = {
ui = {
name = "Sans";
size = 9;
};
terminal = {
name = "Monospace";
size = 9;
};
};
niveum.fonts.size = 9;
fonts = {
enableDefaultFonts = true;
enableFontDir = true;
fonts = with pkgs; [ inconsolata corefonts eb-garamond fira libertine lmodern noto-fonts roboto roboto-mono roboto-slab ubuntu_font_family ];
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
];
fontconfig = {
defaultFonts.monospace = [ "Inconsolata" ];
defaultFonts = {
monospace = [ "Source Code Pro" ];
serif = [ "Source Serif Pro" ];
sansSerif = [ "IBM Plex" ];
};
ultimate = {
enable = true;
substitutions = "combi";