{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.system.custom.fonts;
in {
options.system.custom.fonts = {
enable = mkEnableOption "enable fonts";
dpi = mkOption {
type = types.int;
default = 141;
description = ''
dpi of the monitor
'';
};
};
config = mkIf cfg.enable {
fonts = {
enableFontDir = true;
enableGhostscriptFonts = true;
fontconfig = {
dpi = cfg.dpi;
subpixel = {
lcdfilter = "none";
rgba = "rgb";
};
hinting = {
enable = true;
autohint = true;
style = "hintmedium";
};
enable = true;
antialias = true;
# defaultFonts = { monospace = [ "inconsolata" ]; };
};
Не получается убрать «разноцветные шрифты»