modules/opts: move options to top of init.lua

Using mkOrder to ensure the options can be accessible to everything
throughout the config. Setting right below global table available, so
variables can reference stuff inside global table.
This commit is contained in:
Austin Horstman 2024-08-21 13:11:35 -05:00
parent 203d31810f
commit 8a272143ee
No known key found for this signature in database

View file

@ -84,6 +84,6 @@ in
) optionsAttrs ) optionsAttrs
); );
in in
mkIf (content != "") content; mkIf (content != "") (mkOrder 600 content); # Move options to top of file below global table
}; };
} }