1
0
mirror of https://github.com/kmein/niveum synced 2026-03-17 02:31:09 +01:00
Files
niveum/configs/fonts.nix

36 lines
695 B
Nix
Raw Normal View History

2020-06-10 17:37:25 +02:00
{ pkgs, ... }: {
2019-04-19 15:02:05 +02:00
fonts = {
enableDefaultFonts = true;
2019-07-06 15:08:22 +02:00
enableFontDir = true;
2019-09-25 10:11:18 +02:00
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
2020-05-15 08:06:28 +02:00
source-sans-pro
2019-09-25 10:11:18 +02:00
ubuntu_font_family
2019-10-26 19:44:12 +02:00
gfs-fonts
2020-10-16 08:23:27 +02:00
jetbrains-mono
twemoji-color-font
joypixels
2019-09-25 10:11:18 +02:00
];
fontconfig.defaultFonts = {
monospace = [ "JetBrains Mono" ];
2020-05-15 08:06:28 +02:00
serif = [ "Source Serif Pro" ];
sansSerif = [ "Source Sans Pro" ];
emoji = [ "JoyPixels" ];
2019-09-24 23:31:22 +02:00
};
2019-04-19 15:02:05 +02:00
};
}