modules: don't reference deprecated stdenv.lib (#1770)
`stdenv.lib` has been deprecated, and the correct approach is to use `lib` directly through `pkgs.lib`.
This commit is contained in:
parent
df7d81b0b3
commit
0fa2b16a07
|
@ -1,6 +1,6 @@
|
||||||
{ configuration
|
{ configuration
|
||||||
, pkgs
|
, pkgs
|
||||||
, lib ? pkgs.stdenv.lib
|
, lib ? pkgs.lib
|
||||||
|
|
||||||
# Whether to check that each option has a matching declaration.
|
# Whether to check that each option has a matching declaration.
|
||||||
, check ? true
|
, check ? true
|
||||||
|
|
Loading…
Reference in a new issue