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:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user