From 8bca5f08c286c408285b56b2f97f1cdd9e73e90d Mon Sep 17 00:00:00 2001 From: jjanzen Date: Tue, 25 Mar 2025 19:45:39 -0500 Subject: [PATCH] system changes --- common/.flake/home/fonts.nix.org | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/common/.flake/home/fonts.nix.org b/common/.flake/home/fonts.nix.org index 5b66799..290dc3b 100644 --- a/common/.flake/home/fonts.nix.org +++ b/common/.flake/home/fonts.nix.org @@ -4,13 +4,14 @@ 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, ... }: + { 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; [ + cm_unicode + atkinson-hyperlegible-mono + nerd-fonts.sauce-code-pro + ]; + } #+end_src