Add fontconfig default fonts configuration.
This commit is contained in:
parent
e0014f7d1f
commit
e7dec0492b
|
@ -22,14 +22,25 @@
|
||||||
shells = [ pkgs.zsh ];
|
shells = [ pkgs.zsh ];
|
||||||
};
|
};
|
||||||
|
|
||||||
fonts.fonts = with pkgs; [
|
fonts = {
|
||||||
hasklig
|
fontconfig = {
|
||||||
inter
|
defaultFonts = {
|
||||||
iosevka
|
emoji = [ "Noto Color Emoji" ];
|
||||||
noto-fonts
|
monospace = [ "Hasklig" "Victor Mono" "DejaVu Sans Mono" ];
|
||||||
victor-mono
|
sansSerif = [ "Inter" "DejaVu Sans" ];
|
||||||
(nerdfonts.override { fonts = [ "Hasklig" ]; })
|
serif = [ "Inter" "DejaVu Sans" ];
|
||||||
];
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
fonts = with pkgs; [
|
||||||
|
hasklig
|
||||||
|
inter
|
||||||
|
iosevka
|
||||||
|
noto-fonts
|
||||||
|
victor-mono
|
||||||
|
(nerdfonts.override { fonts = [ "Hasklig" ]; })
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
opengl = {
|
opengl = {
|
||||||
|
|
Loading…
Reference in New Issue