tvl-depot/users/tazjin/nixos/modules/fonts.nix
Vincent Ambo c352306491 feat(tazjin/home): configure chicago95 theme in home-manager
Finally no more setting this up manually!

Change-Id: I75d7a53623cc05a0a88f70e20e881a944b6ed818
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12446
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
2024-09-07 11:40:09 +00:00

27 lines
492 B
Nix

# Attempt at configuring reasonable font-rendering.
{ depot, pkgs, ... }:
{
fonts = {
packages = with pkgs; [
corefonts
dejavu_fonts
font-awesome
jetbrains-mono
noto-fonts-cjk
noto-fonts-color-emoji
noto-fonts-monochrome-emoji
depot.third_party.chicago95
];
fontconfig = {
hinting.enable = true;
subpixel.lcdfilter = "light";
defaultFonts = {
monospace = [ "JetBrains Mono" ];
};
};
};
}