aboutsummaryrefslogtreecommitdiff
path: root/common/.flake/home/fonts.nix.org
blob: 7f1dcc51cedc74c762688e14310bbc6b77aa8908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#+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