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