treewide: remove config dependency on docs (#7547)

Tested with rebased
https://github.com/nix-community/home-manager/pull/6411 so I could find
all instances of config usage in docs.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
Co-authored-by: Robert Helgesson <robert@rycee.net>
This commit is contained in:
Austin Horstman 2025-07-26 17:11:53 -05:00 committed by GitHub
parent 37fec70bd5
commit 2b73c2fcca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 73 additions and 41 deletions

View file

@ -7,15 +7,16 @@
let
cfg = config.nixGL;
wrapperListMarkdown =
with builtins;
foldl' (
list: name:
list
+ ''
- ${name}
''
) "" (attrNames config.lib.nixGL.wrappers);
wrapperAttrNames = [
"mesa"
"mesaPrime"
"nvidia"
"nvidiaPrime"
];
wrapperListMarkdown = lib.concatMapStringsSep "\n" (v: "- ${v}") wrapperAttrNames;
in
{
meta.maintainers = [ lib.maintainers.smona ];
@ -42,7 +43,7 @@ in
};
defaultWrapper = lib.mkOption {
type = lib.types.enum (builtins.attrNames config.lib.nixGL.wrappers);
type = lib.types.enum wrapperAttrNames;
default = "mesa";
description = ''
The package wrapper function available for use as `(config.lib.nixGL.wrap
@ -58,7 +59,7 @@ in
};
offloadWrapper = lib.mkOption {
type = lib.types.enum (builtins.attrNames config.lib.nixGL.wrappers);
type = lib.types.enum wrapperAttrNames;
default = "mesaPrime";
description = ''
The package wrapper function available for use as
@ -124,7 +125,7 @@ in
};
installScripts = lib.mkOption {
type = with lib.types; nullOr (listOf (enum (builtins.attrNames config.lib.nixGL.wrappers)));
type = with lib.types; nullOr (listOf (enum wrapperAttrNames));
default = null;
example = [
"mesa"
@ -282,6 +283,8 @@ in
override = args: makePackageWrapper vendor environment (pkg.override args);
};
# Note, if you add/remove/alter attribute names here you need to make a
# corresponding change in the definition of `wrapperAttrNames`.
wrappers = {
mesa = makePackageWrapper "Intel" { };
mesaPrime = makePackageWrapper "Intel" mesaOffloadEnv;