grimm-nixos-laptop/common/graphics/fonts.nix
2024-05-25 23:15:31 +02:00

31 lines
546 B
Nix

{
lib,
pkgs,
config,
...
}:
let
inherit (config.grimmShared) enable graphical;
in
{
config = lib.mkIf (enable && graphical) {
fonts = {
packages = with pkgs; [
noto-fonts
noto-fonts-cjk
font-awesome
# noto-fonts-emoji
noto-fonts-monochrome-emoji
roboto
liberation_ttf
nerdfonts
];
fontDir.enable = true;
};
environment.sessionVariables = {
FREETYPE_PROPERTIES = "cff:no-stem-darkening=0 autofitter:no-stem-darkening=0";
};
};
}