16 lines
316 B
Nix
16 lines
316 B
Nix
{pkgs, fonts, ...}:
|
|
{
|
|
fonts.packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-cjk
|
|
font-awesome
|
|
noto-fonts-emoji
|
|
roboto
|
|
liberation_ttf
|
|
];
|
|
fonts.fontDir.enable = true;
|
|
environment.sessionVariables = {
|
|
FREETYPE_PROPERTIES="cff:no-stem-darkening=0 autofitter:no-stem-darkening=0";
|
|
};
|
|
}
|