diff options
Diffstat (limited to 'common/.flake/home/fonts.nix.org')
-rw-r--r-- | common/.flake/home/fonts.nix.org | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/common/.flake/home/fonts.nix.org b/common/.flake/home/fonts.nix.org index 5b66799..7f1dcc5 100644 --- a/common/.flake/home/fonts.nix.org +++ b/common/.flake/home/fonts.nix.org @@ -1,16 +1,20 @@ #+title: Font Configuration Install fonts necessary for my configuration. Namely +- Atkinson Hyperlegible Mono - Computer Modern - Source Code Pro (Nerd Font) -#+begin_src nix :tangle ~/.flake/home/fonts.nix :mkdirp yes -{ config, pkgs, ... }: +#+begin_src nix + { config, pkgs, ... }: -{ - fonts.fontconfig.enable = true; - home.packages = with pkgs; [ - cm_unicode - nerd-fonts.sauce-code-pro - ]; -} + { + 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 |