nixos/fontconfig: default useEmbeddedBitmaps to true on 26.05 (#454989)

This commit is contained in:
Michael Daniels
2026-04-15 00:56:31 +00:00
committed by GitHub
2 changed files with 4 additions and 1 deletions
@@ -330,6 +330,8 @@ See <https://github.com/NixOS/nixpkgs/issues/481673>.
- Budgie has been updated to 10.10, please check the [upstream announcement](https://buddiesofbudgie.org/blog/budgie-10-10-released) for more details.
- `fonts.fontconfig.useEmbeddedBitmaps` is now set to `true` by default.
- `stestrCheckHook` was added: This test hook runs `stestr run`. You can disable tests with `disabledTests` and `disabledTestsRegex`.
- `services.frp` now supports multiple instances through `services.frp.instances` to make it possible to run multiple frp clients or servers at the same time.
+2 -1
View File
@@ -518,7 +518,8 @@ in
useEmbeddedBitmaps = lib.mkOption {
type = lib.types.bool;
default = false;
default = lib.versionAtLeast config.system.stateVersion "26.05";
defaultText = lib.literalExpression "lib.versionAtLeast config.system.stateVersion \"26.05\"";
description = "Use embedded bitmaps in fonts like Calibri.";
};