nixos-config/sets/fonts.nix

33 lines
481 B
Nix
Raw Normal View History

2020-04-11 21:47:33 +00:00
{ config, pkgs, ... }:
{
fonts = {
fontconfig.enable = true;
2020-04-11 21:47:33 +00:00
enableDefaultFonts = true;
fonts = with pkgs; [
2021-11-12 18:33:13 +00:00
# MS fonts
2020-04-11 21:47:33 +00:00
cantarell-fonts
corefonts
2021-11-12 18:33:13 +00:00
# Mono fonts
2020-04-11 21:47:33 +00:00
dejavu_fonts
fira-code
2021-11-12 18:33:13 +00:00
iosevka
source-code-pro
source-sans-pro
# UI fonts
b612
inter
inter-ui
roboto
# All the noto
2020-04-11 21:47:33 +00:00
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
noto-fonts-extra
];
};
}