1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/configs/fonts.nix

56 lines
1.1 KiB
Nix
Raw Normal View History

2022-05-20 23:03:37 +02:00
{pkgs, ...}: {
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
2022-04-13 09:01:16 +02:00
amiri
annapurna-sil
2022-04-13 09:01:16 +02:00
cantarell-fonts
charis-sil
2019-09-25 10:11:18 +02:00
corefonts
2022-04-13 09:01:16 +02:00
crimson
2019-09-25 10:11:18 +02:00
eb-garamond
2022-08-21 01:01:08 +02:00
font-awesome_6
2022-04-13 09:01:16 +02:00
etBook
ezra-sil
2019-09-25 10:11:18 +02:00
fira
font-awesome
galatia-sil
2022-04-13 09:01:16 +02:00
gentium
gfs-fonts
gyre-fonts
ia-writer-duospace
2019-09-25 10:11:18 +02:00
ibm-plex
2022-04-13 09:01:16 +02:00
jetbrains-mono
libertinus
libre-bodoni
2019-09-25 10:11:18 +02:00
lmodern
2022-04-13 09:01:16 +02:00
merriweather
ocr-a
2019-09-25 10:11:18 +02:00
roboto
roboto-mono
2022-08-18 18:46:54 +02:00
noto-fonts-emoji
2019-09-25 10:11:18 +02:00
roboto-slab
2022-04-13 09:01:16 +02:00
scheherazade-new
2019-09-25 10:11:18 +02:00
source-code-pro
2020-05-15 08:06:28 +02:00
source-sans-pro
2022-04-13 09:01:16 +02:00
source-serif-pro
theano
2022-01-11 19:56:31 +01:00
tocharian-font
2022-04-13 09:01:16 +02:00
vistafonts
vollkorn
zilla-slab
]; # google-fonts league-of-moveable-type
fontconfig.defaultFonts = let
2022-08-18 18:46:54 +02:00
emojiFont = "Noto Emoji";
2022-04-13 09:01:16 +02:00
in {
monospace = ["JetBrains Mono" emojiFont];
serif = ["Merriweather"];
sansSerif = ["Cantarell" emojiFont];
emoji = [emojiFont];
2019-09-24 23:31:22 +02:00
};
2019-04-19 15:02:05 +02:00
};
}