summaryrefslogtreecommitdiff
path: root/home-manager
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-12-09 09:26:04 -0600
committerTim Keller <tjk@tjkeller.xyz>2025-12-09 09:26:04 -0600
commitc700fdefc57c2fd3b1d5253b6e21039b6d84d51e (patch)
treed66e95d5bcc442802aa9d8068ec5061f9a7f4ec3 /home-manager
parentcdd42cb1bb28f46d05616b392e5bc7f7c3e92a7c (diff)
downloadnixos-c700fdefc57c2fd3b1d5253b6e21039b6d84d51e.tar.xz
nixos-c700fdefc57c2fd3b1d5253b6e21039b6d84d51e.zip
fix msg
Diffstat (limited to 'home-manager')
-rw-r--r--home-manager/fontconfig.nix4
1 files changed, 2 insertions, 2 deletions
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.'')
];
};
}