blob: 3a01993538f7d7574431b92e1be6e44184ffe8a5 (
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
(pkgs.nerdfonts.override { fonts = [ "SourceCodePro" ]; })
];
}
#+end_src
|