1
Fork 0

Add fontconfig default fonts configuration.

This commit is contained in:
Bauke 2023-02-11 11:02:42 +01:00
parent e0014f7d1f
commit e7dec0492b
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 19 additions and 8 deletions

View File

@ -22,7 +22,17 @@
shells = [ pkgs.zsh ]; shells = [ pkgs.zsh ];
}; };
fonts.fonts = with pkgs; [ fonts = {
fontconfig = {
defaultFonts = {
emoji = [ "Noto Color Emoji" ];
monospace = [ "Hasklig" "Victor Mono" "DejaVu Sans Mono" ];
sansSerif = [ "Inter" "DejaVu Sans" ];
serif = [ "Inter" "DejaVu Sans" ];
};
};
fonts = with pkgs; [
hasklig hasklig
inter inter
iosevka iosevka
@ -30,6 +40,7 @@
victor-mono victor-mono
(nerdfonts.override { fonts = [ "Hasklig" ]; }) (nerdfonts.override { fonts = [ "Hasklig" ]; })
]; ];
};
hardware = { hardware = {
opengl = { opengl = {