added fontconfig back
This commit is contained in:
parent
fbd8946612
commit
b30410e747
|
@ -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
|
||||
];
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
./firefox.nix
|
||||
./alacritty.nix
|
||||
./zotero.nix
|
||||
./fontconfig.nix
|
||||
];
|
||||
|
||||
# Global packages for desktop environments
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
{ ... }: {
|
||||
fonts = {
|
||||
fontconfig = {
|
||||
defaultFonts = {
|
||||
serif = [ "NotoSans Nerd Font" ];
|
||||
sansSerif = [ "Linux Biolinum O" ];
|
||||
monospace = [ "Hack Nerd Font" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue