feat: add more system fonts
This commit is contained in:
parent
a7314b08f1
commit
5109f8bc6a
1 changed files with 44 additions and 4 deletions
|
|
@ -388,11 +388,51 @@ in
|
||||||
packages = [
|
packages = [
|
||||||
pkgs.atkinson-hyperlegible-next
|
pkgs.atkinson-hyperlegible-next
|
||||||
pkgs.nerd-fonts.commit-mono
|
pkgs.nerd-fonts.commit-mono
|
||||||
|
pkgs.nerd-fonts.symbols-only
|
||||||
|
pkgs.noto-fonts
|
||||||
|
pkgs.noto-fonts-cjk-sans
|
||||||
|
pkgs.noto-fonts-cjk-serif
|
||||||
|
pkgs.noto-fonts-color-emoji
|
||||||
|
pkgs.symbola
|
||||||
|
pkgs.unifont
|
||||||
|
pkgs.unifont_upper
|
||||||
];
|
];
|
||||||
fontconfig.defaultFonts = {
|
|
||||||
sansSerif = [ "Atkinson Hyperlegible Next" ];
|
fontconfig = {
|
||||||
serif = [ "Atkinson Hyperlegible Next" ];
|
allowBitmaps = false;
|
||||||
monospace = [ "CommitMono Nerd Font" ];
|
useEmbeddedBitmaps = false;
|
||||||
|
|
||||||
|
defaultFonts = {
|
||||||
|
sansSerif = [
|
||||||
|
"Atkinson Hyperlegible Next"
|
||||||
|
"Noto Sans"
|
||||||
|
"Noto Sans CJK JP"
|
||||||
|
"Noto Sans CJK SC"
|
||||||
|
"Noto Sans CJK TC"
|
||||||
|
"Noto Sans CJK HK"
|
||||||
|
"Noto Sans CJK KR"
|
||||||
|
"Symbols Nerd Font"
|
||||||
|
"Symbola"
|
||||||
|
"Unifont"
|
||||||
|
];
|
||||||
|
serif = [
|
||||||
|
"Noto Serif"
|
||||||
|
"Noto Serif CJK JP"
|
||||||
|
"Noto Serif CJK SC"
|
||||||
|
"Noto Serif CJK TC"
|
||||||
|
"Noto Serif CJK KR"
|
||||||
|
"Symbola"
|
||||||
|
"Unifont"
|
||||||
|
];
|
||||||
|
monospace = [
|
||||||
|
"CommitMono Nerd Font"
|
||||||
|
"Noto Sans Mono"
|
||||||
|
"Noto Sans Mono CJK JP"
|
||||||
|
"Symbols Nerd Font Mono"
|
||||||
|
"Unifont"
|
||||||
|
];
|
||||||
|
emoji = [ "Noto Color Emoji" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue