From 7988306ab0a353227791af6b4c3116f91e41b35d Mon Sep 17 00:00:00 2001 From: Michael Czechowski Date: Mon, 15 Sep 2025 14:29:14 +0200 Subject: [PATCH] fix: update fonts configuration for NixOS changes - Rename fonts.fonts to fonts.packages (deprecated option) - Add cantarell-fonts (GNOME default) and ubuntu-classic for better font coverage - Should resolve QEMU font warnings for DejaVu Sans Mono --- common.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/common.nix b/common.nix index 852e14c..5d0813b 100644 --- a/common.nix +++ b/common.nix @@ -1207,14 +1207,12 @@ isoConfig }; # Font packages for GUI rendering (QEMU GTK display) - fonts.fonts = with pkgs; [ + fonts.packages = with pkgs; [ dejavu_fonts liberation_ttf noto-fonts - # Additional fonts for QEMU compatibility - freefont_ttf - ubuntu_font_family - cantarell-fonts + cantarell-fonts # GNOME default font + ubuntu-classic # Additional font for compatibility ]; # GUI Configuration