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;
home.packages = with pkgs; [
nerdfonts
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
hack-font
liberation_ttf
libertine
nerdfonts
font-awesome
];

View File

@ -3,6 +3,7 @@
./firefox.nix
./alacritty.nix
./zotero.nix
./fontconfig.nix
];
# 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" ];
};
};
};
}