mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
19 lines
323 B
Nix
19 lines
323 B
Nix
{ pkgs, ... }:
|
|
{
|
|
niveum.fonts = {
|
|
ui = {
|
|
name = "Sans";
|
|
size = 9;
|
|
};
|
|
terminal = {
|
|
name = "Monospace";
|
|
size = 9;
|
|
};
|
|
};
|
|
|
|
fonts = {
|
|
enableDefaultFonts = true;
|
|
fonts = with pkgs; [ corefonts eb-garamond fira libertine lmodern noto-fonts roboto ubuntu_font_family ];
|
|
};
|
|
}
|