From c700fdefc57c2fd3b1d5253b6e21039b6d84d51e Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Tue, 9 Dec 2025 09:26:04 -0600 Subject: fix msg --- home-manager/fontconfig.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'home-manager') diff --git a/home-manager/fontconfig.nix b/home-manager/fontconfig.nix index 0f817c8..7c12b7e 100644 --- a/home-manager/fontconfig.nix +++ b/home-manager/fontconfig.nix @@ -3,9 +3,9 @@ # Warn whenever subpixelRendering is not enabled warnings = [ (lib.mkIf (config.fonts.fontconfig.subpixelRendering == null) - "fonts.fontconfig.subpixelRendering is unset; this may result in suboptimal font rendering. Set this value to 'none' to disable the feature.") + ''fonts.fontconfig.subpixelRendering is unset; this may result in suboptimal font rendering. Set this value to "none" to disable the feature explicitly.'') (lib.mkIf (config.fonts.fontconfig.hinting == null) - "fonts.fontconfig.hinting is unset; this may result in suboptimal font clarity. Set this value to 'none' to disable the feature.") + ''fonts.fontconfig.hinting is unset; this may result in suboptimal font clarity. Set this value to "none" to disable the feature explicitly.'') ]; }; } -- cgit v1.2.3