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:
Bernardo Meurer 2021-02-01 14:52:05 +00:00 committed by GitHub
parent df7d81b0b3
commit 0fa2b16a07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{ configuration
, pkgs
, lib ? pkgs.stdenv.lib
, lib ? pkgs.lib
# Whether to check that each option has a matching declaration.
, check ? true