mirror of
https://github.com/nix-community/home-manager
synced 2024-12-23 18:29:47 +01: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:
parent
df7d81b0b3
commit
0fa2b16a07
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue