From 128a95235f39443cf77fbb4786626a5401291c65 Mon Sep 17 00:00:00 2001 From: cguentherTUChemnitz Date: Mon, 10 Nov 2025 01:34:45 +0100 Subject: [PATCH] fixing build failure against current nixos-unstable: error: 'noto-fonts-emoji' has been renamed to/replaced by 'noto-fonts-color-emoji' (#26) --- modules/nixos/system.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos/system.nix b/modules/nixos/system.nix index 58b2280..2207499 100644 --- a/modules/nixos/system.nix +++ b/modules/nixos/system.nix @@ -41,7 +41,7 @@ in fonts.packages = with pkgs; [ noto-fonts - noto-fonts-emoji + noto-fonts-color-emoji nerd-fonts.caskaydia-mono ]; }