other fonts
This commit is contained in:
parent
0b8ae3bbc6
commit
8c8499796e
|
@ -408,41 +408,23 @@ in
|
||||||
# add ~/bin to PATH
|
# add ~/bin to PATH
|
||||||
environment.homeBinInPath = true;
|
environment.homeBinInPath = true;
|
||||||
|
|
||||||
# more fonts for all users
|
# fonts for all users
|
||||||
fonts = {
|
fonts = {
|
||||||
# default fonts
|
# no default fonts
|
||||||
enableDefaultPackages = true;
|
enableDefaultPackages = false;
|
||||||
|
|
||||||
# ensure we have an emulated global fontdir
|
# ensure we have an emulated global fontdir
|
||||||
fontDir.enable = true;
|
fontDir.enable = true;
|
||||||
|
|
||||||
# more fonts
|
# Nerd Fonts for the win
|
||||||
packages = with pkgs; [
|
packages = [ pkgs.nerdfonts ];
|
||||||
# good coding and terminal font
|
|
||||||
cascadia-code
|
|
||||||
|
|
||||||
# good UI font
|
|
||||||
inter
|
|
||||||
|
|
||||||
# unicode capable fonts
|
|
||||||
babelstone-han
|
|
||||||
dejavu_fonts
|
|
||||||
ipafont
|
|
||||||
kochi-substitute
|
|
||||||
noto-fonts
|
|
||||||
noto-fonts-cjk
|
|
||||||
noto-fonts-cjk-sans
|
|
||||||
noto-fonts-cjk-serif
|
|
||||||
noto-fonts-extra
|
|
||||||
noto-fonts-emoji
|
|
||||||
];
|
|
||||||
|
|
||||||
# tune fontconfig
|
# tune fontconfig
|
||||||
fontconfig = {
|
fontconfig = {
|
||||||
# better default fonts
|
# better default fonts
|
||||||
defaultFonts = {
|
defaultFonts = {
|
||||||
monospace = ["Cascadia Code"];
|
monospace = ["JetBrainsMono Nerd Font Mono"];
|
||||||
sansSerif = ["Inter"];
|
sansSerif = ["M+1 Nerd Font"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue