diff options
Diffstat (limited to 'common/.flake/home/fonts.nix.org')
-rw-r--r-- | common/.flake/home/fonts.nix.org | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/common/.flake/home/fonts.nix.org b/common/.flake/home/fonts.nix.org new file mode 100644 index 0000000..3a01993 --- /dev/null +++ b/common/.flake/home/fonts.nix.org @@ -0,0 +1,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 |