1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00

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

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