From 2cdd49b3965843954554dcb05dd9950da2fb0c26 Mon Sep 17 00:00:00 2001 From: Nico Date: Sat, 3 May 2025 16:15:58 +1000 Subject: [PATCH] nix: updated nerd fonts to match new namespace in nixpkgs --- modules/fonts.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/fonts.nix b/modules/fonts.nix index 591c788..6ab86f3 100644 --- a/modules/fonts.nix +++ b/modules/fonts.nix @@ -5,10 +5,10 @@ fonts = { fontDir.enable = true; packages = with pkgs; [ - noto-fonts # most langs and emojis - noto-fonts-cjk-sans # gets japanese and chinese langs - nerdfonts # programming fonts - corefonts # basic web fonts + noto-fonts # most langs and emojis + noto-fonts-cjk-sans # gets japanese and chinese langs + nerd-fonts.jetbrains-mono # programming fonts + corefonts # basic web fonts ]; }; }