blob: ebc139545f1c443d27e957f26680fd3613a3a323 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#+title: Font Configuration
Install fonts necessary for my configuration.
#+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
|