Add fontconfig default fonts configuration.
This commit is contained in:
parent
e0014f7d1f
commit
e7dec0492b
|
@ -22,14 +22,25 @@
|
|||
shells = [ pkgs.zsh ];
|
||||
};
|
||||
|
||||
fonts.fonts = with pkgs; [
|
||||
hasklig
|
||||
inter
|
||||
iosevka
|
||||
noto-fonts
|
||||
victor-mono
|
||||
(nerdfonts.override { fonts = [ "Hasklig" ]; })
|
||||
];
|
||||
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
|
||||
inter
|
||||
iosevka
|
||||
noto-fonts
|
||||
victor-mono
|
||||
(nerdfonts.override { fonts = [ "Hasklig" ]; })
|
||||
];
|
||||
};
|
||||
|
||||
hardware = {
|
||||
opengl = {
|
||||
|
|
Loading…
Reference in New Issue