added fontconfig back

This commit is contained in:
Sam 2024-06-15 17:24:21 +01:00
parent fbd8946612
commit b30410e747
3 changed files with 13 additions and 1 deletions

View File

@ -2,13 +2,13 @@
{ {
fonts.fontconfig.enable = true; fonts.fontconfig.enable = true;
home.packages = with pkgs; [ home.packages = with pkgs; [
nerdfonts
noto-fonts noto-fonts
noto-fonts-cjk noto-fonts-cjk
noto-fonts-emoji noto-fonts-emoji
hack-font hack-font
liberation_ttf liberation_ttf
libertine libertine
nerdfonts
font-awesome font-awesome
]; ];

View File

@ -3,6 +3,7 @@
./firefox.nix ./firefox.nix
./alacritty.nix ./alacritty.nix
./zotero.nix ./zotero.nix
./fontconfig.nix
]; ];
# Global packages for desktop environments # Global packages for desktop environments

View File

@ -0,0 +1,11 @@
{ ... }: {
fonts = {
fontconfig = {
defaultFonts = {
serif = [ "NotoSans Nerd Font" ];
sansSerif = [ "Linux Biolinum O" ];
monospace = [ "Hack Nerd Font" ];
};
};
};
}