added fontconfig back
This commit is contained in:
parent
fbd8946612
commit
b30410e747
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
{ ... }: {
|
||||||
|
fonts = {
|
||||||
|
fontconfig = {
|
||||||
|
defaultFonts = {
|
||||||
|
serif = [ "NotoSans Nerd Font" ];
|
||||||
|
sansSerif = [ "Linux Biolinum O" ];
|
||||||
|
monospace = [ "Hack Nerd Font" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue