From 97b09f909f42c6b66ab0a0175b2db7f0fd48009c Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Fri, 12 Sep 2025 14:32:35 +0200 Subject: [PATCH] feat: add Michroma font via Google Fonts package - Enable fontconfig in Home Manager - Add google-fonts package which includes Michroma - Font is now available system-wide for use in applications --- nixos/home/danny/home.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nixos/home/danny/home.nix b/nixos/home/danny/home.nix index ebd9838..eea5163 100644 --- a/nixos/home/danny/home.nix +++ b/nixos/home/danny/home.nix @@ -192,8 +192,12 @@ # TODO: Put user-installed binaries here if you want HM to own them (optional) - # home.packages = with pkgs; [ - # ]; + # Fonts + fonts.fontconfig.enable = true; + home.packages = with pkgs; [ + # Google Fonts (includes Michroma) + google-fonts + ]; # First HM version for this user config; bump only if you understand the migration notes. home.stateVersion = "24.11";