Added fonts to graphics

This commit is contained in:
James Patrick 2021-11-28 17:16:57 -05:00
parent 9003325961
commit 7111add0c3
1 changed files with 22 additions and 0 deletions

View File

@ -17,4 +17,26 @@
# Enable sound.
sound.enable = true;
hardware.pulseaudio.enable = true;
fonts = {
enableDefaultFonts = true;
fonts = with pkgs; [
alegreya
fira-code
fira-code-symbols
hasklig
inter
liberation_ttf
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
];
fontconfig = {
defaultFonts = {
serif = [ "inter" ];
sansSerif = [ "alegreya" ];
monospace = [ "hasklig" ];
};
};
};
}