42 lines
873 B
Nix
42 lines
873 B
Nix
{pkgs, ...}: {
|
|
fonts.fontconfig.enable = true;
|
|
home.packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-emoji
|
|
noto-fonts-extra
|
|
liberation_ttf
|
|
dejavu_fonts
|
|
fira-code
|
|
fira-mono
|
|
jetbrains-mono
|
|
source-code-pro
|
|
hack-font
|
|
roboto
|
|
roboto-mono
|
|
font-awesome
|
|
material-design-icons
|
|
inter
|
|
ibm-plex
|
|
sarasa-gothic
|
|
unifont
|
|
dina-font
|
|
# proggyfonts - removed due to collision with dina-font fonts.dir
|
|
terminus_font
|
|
mplus-outline-fonts.osdnRelease
|
|
open-sans
|
|
# Droid fonts are now in android-fonts-droid
|
|
# droid-sans
|
|
# droid-serif
|
|
# droid-sans-mono
|
|
cantarell-fonts
|
|
recursive
|
|
# google-fonts - removed due to collision with jetbrains-mono
|
|
# Microsoft fonts
|
|
corefonts
|
|
vistafonts
|
|
# webcore-fonts - removed package
|
|
cascadia-code
|
|
];
|
|
}
|