#+title: Font Configuration Install fonts necessary for my configuration. Namely - Computer Modern - Source Code Pro (Nerd Font) #+begin_src nix { config, pkgs, ... }: { fonts.fontconfig.enable = true; home.packages = with pkgs; [ atkinson-hyperlegible-mono cm_unicode nerd-fonts.symbols-only nerd-fonts.sauce-code-pro ]; } #+end_src