mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
darwin-[un]installer: Don't reference deprecated stdenv.lib
`stdenv.lib` has been deprecated, and the correct approach is to use `lib` directly through `pkgs.lib`.
This commit is contained in:
parent
5c3146b75d
commit
e78f90f795
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ let
|
|||
filter = name: _type: name != toString ./default.nix;
|
||||
};
|
||||
|
||||
nixPath = stdenv.lib.concatStringsSep ":" [
|
||||
nixPath = pkgs.lib.concatStringsSep ":" [
|
||||
"darwin-config=${configuration}/configuration.nix"
|
||||
"darwin=${nix-darwin}"
|
||||
"nixpkgs=${pkgs.path}"
|
||||
|
|
|
@ -7,7 +7,7 @@ let
|
|||
filter = name: _type: name != toString ./default.nix;
|
||||
};
|
||||
|
||||
nixPath = stdenv.lib.concatStringsSep ":" [
|
||||
nixPath = pkgs.lib.concatStringsSep ":" [
|
||||
"darwin-config=${configuration}/configuration.nix"
|
||||
"darwin=${nix-darwin}"
|
||||
"nixpkgs=${pkgs.path}"
|
||||
|
|
Loading…
Reference in a new issue