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