Just for reference: ```nix mkBefore = mkOrder 500; defaultOrderPriority = 1000; mkAfter = mkOrder 1500; ```
13 lines
301 B
Nix
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;
|
|
};
|
|
}
|