about summary refs log blame commit diff
path: root/users/tazjin/nixos/modules/fonts.nix
blob: 36b4cbe969ce4c488469f0fb2e20c75546b44dcf (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                   
                     


           
                           

                  
                  

                    

                                 











                                         
# 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
    ];

    fontconfig = {
      hinting.enable = true;
      subpixel.lcdfilter = "light";

      defaultFonts = {
        monospace = [ "JetBrains Mono" ];
      };
    };
  };
}