dotfiles/common/.flake/home/fonts.nix.org
2024-12-16 23:28:56 -06:00

343 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
  ];
}