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

42 lines
835 B
Nix
Raw Normal View History

2020-06-10 17:37:25 +02:00
{ pkgs, ... }: {
2021-06-01 19:14:00 +02:00
nixpkgs.config.joypixels.acceptLicense = true;
2019-04-19 15:02:05 +02:00
fonts = {
enableDefaultFonts = true;
2021-06-01 19:14:00 +02:00
fontDir.enable = true;
2019-09-25 10:11:18 +02:00
fonts = with pkgs; [
2021-11-12 20:04:16 +01:00
alegreya
alegreya-sans
2019-09-25 10:11:18 +02:00
corefonts
eb-garamond
fira
font-awesome-ttf
ibm-plex
inconsolata
iosevka
libertine
lmodern
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
2019-09-25 10:11:18 +02:00
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" "JoyPixels" ];
serif = [ "Roboto Slab" ];
sansSerif = [ "Roboto" "Noto Sans" ];
emoji = [ "JoyPixels" ];
2019-09-24 23:31:22 +02:00
};
2019-04-19 15:02:05 +02:00
};
}