dotfiles/common/.flake/home/fonts.nix.org
2025-03-26 13:17:53 -05:00

18 lines
378 B
Org Mode

#+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