Disable default fonts, now M+ displays in Firefox instead of unifont
This commit is contained in:
parent
c614860e56
commit
061cb8bd92
1 changed files with 11 additions and 8 deletions
|
@ -44,12 +44,15 @@ in
|
||||||
hardware.pulseaudio.enable = true;
|
hardware.pulseaudio.enable = true;
|
||||||
nixpkgs.config.pulseaudio = true;
|
nixpkgs.config.pulseaudio = true;
|
||||||
|
|
||||||
fonts.fonts = with pkgs; [
|
fonts = {
|
||||||
# noto-fonts-cjk doesn't display in Discord for some reason
|
enableDefaultFonts = false;
|
||||||
# mplus-outline-fonts.osdnRelease is no longer updated and is now mplus-outline-fonts.githubRelease,
|
fonts = with pkgs; [
|
||||||
# but で renders weird for some reason in the GitHub release, so I'm sticking to OSDN
|
# noto-fonts-cjk doesn't display in Discord for some reason
|
||||||
mplus-outline-fonts.osdnRelease
|
# mplus-outline-fonts.osdnRelease is no longer updated and is now mplus-outline-fonts.githubRelease,
|
||||||
noto-fonts
|
# but で renders weird for some reason in the GitHub release, so I'm sticking to OSDN
|
||||||
(nerdfonts.override { fonts = [ "FiraCode" ]; }) # required for icons
|
mplus-outline-fonts.osdnRelease
|
||||||
];
|
noto-fonts
|
||||||
|
(nerdfonts.override { fonts = [ "FiraCode" ]; }) # required for icons
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue