27 lines
536 B
Nix
27 lines
536 B
Nix
#
|
|
# Font configuration.
|
|
#
|
|
# vim: et:ts=2:sw=2:
|
|
#
|
|
{ deprekages, pkgs, ... }:
|
|
{
|
|
fonts = {
|
|
packages = [
|
|
deprekages.font-monolisa
|
|
deprekages.font-codicon
|
|
deprekages.font-manrope
|
|
deprekages.font-phantom-sans
|
|
deprekages.font-ia-writer
|
|
deprekages.font-pack-cyberpunk
|
|
pkgs.nerd-fonts.terminess-ttf
|
|
pkgs.terminus_font
|
|
];
|
|
|
|
fontconfig.localConf = ''
|
|
<match target="font">
|
|
<edit name="lcdfilter" mode="assign"><const>lcdlight</const></edit>
|
|
</match>
|
|
'';
|
|
|
|
};
|
|
}
|