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

17 lines
392 B
Org Mode

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