IT WORKS
This commit is contained in:
parent
75854e1455
commit
f2570e4552
9 changed files with 39 additions and 77 deletions
|
@ -9,21 +9,20 @@
|
|||
inherit (config.modules.other.system) username;
|
||||
in {
|
||||
# A (somewhat) sane list of default fonts to be installed.
|
||||
fonts.packages = with pkgs;
|
||||
[
|
||||
material-design-icons
|
||||
papirus-icon-theme
|
||||
(nerdfonts.override {fonts = ["ComicShannsMono"];}) # ComicShanns my beloved
|
||||
noto-fonts
|
||||
noto-fonts-cjk-sans
|
||||
noto-fonts-cjk-serif
|
||||
noto-fonts-color-emoji
|
||||
corefonts
|
||||
]
|
||||
++ optional (extraFonts != null) extraFonts;
|
||||
fonts.packages = with pkgs; [
|
||||
material-design-icons
|
||||
papirus-icon-theme
|
||||
(nerdfonts.override {fonts = ["ComicShannsMono"];}) # ComicShanns my beloved
|
||||
noto-fonts
|
||||
noto-fonts-cjk-sans
|
||||
noto-fonts-cjk-serif
|
||||
noto-fonts-color-emoji
|
||||
corefonts
|
||||
];
|
||||
# ++ optional (extraFonts != null) extraFonts;
|
||||
# this fixes emoji stuff
|
||||
home-manager.users.${username} = {
|
||||
fontconfig = {
|
||||
fonts.fontconfig = {
|
||||
defaultFonts = {
|
||||
monospace = ["ComicShannsMono Nerd Font" "Noto Color Emoji"];
|
||||
sansSerif = ["ComicShannsMono Nerd Font" "Noto Color Emoji"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue