11.stylix/stylix/ordering.nix
Shahar "Dawn" Or 7abe83d1ed fontconfig: set defaultFonts with mkOrder 600
Just for reference:

```nix
mkBefore = mkOrder 500;
defaultOrderPriority = 1000;
mkAfter = mkOrder 1500;
```
2025-07-28 18:08:07 +07:00

13 lines
301 B
Nix

{ lib, ... }:
{
options.stylix.listTargetIndex = lib.mkOption {
description = ''
The target index at which stylix inserts into lists.
Intended for use as argument to `lib.mkOrder`.
'';
type = lib.types.int;
default = 600;
internal = true;
readOnly = true;
};
}