blob: 5b6679909e087aaa3c972a971b89f943a73f7fe2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#+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
nerd-fonts.sauce-code-pro
];
}
#+end_src
|