dotfiles/common/.flake/home/fonts.nix.org
2025-03-25 19:52:32 -05:00

359 B

Font Configuration

Install fonts necessary for my configuration. Namely

  • Computer Modern
  • Source Code Pro (Nerd Font)
  { config, pkgs, ... }:

  {
    fonts.fontconfig.enable = true;
    home.packages = with pkgs; [
      cm_unicode
      nerd-fonts.sauce-code-pro
    ];
  }