mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
flake: fix self referential lib output
In https://github.com/nix-community/home-manager/pull/2859, the library became self-referential, so we need to use the stdlib-extended helper instead of importing directly.
This commit is contained in:
parent
d86c189158
commit
1d3380afba
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@
|
||||||
darwinModule = self.darwinModules.default;
|
darwinModule = self.darwinModules.default;
|
||||||
|
|
||||||
lib = {
|
lib = {
|
||||||
hm = import ./modules/lib { lib = nixpkgs.lib; };
|
hm = (import ./modules/lib/stdlib-extended.nix nixpkgs.lib).hm;
|
||||||
homeManagerConfiguration = { modules ? [ ], pkgs, lib ? pkgs.lib
|
homeManagerConfiguration = { modules ? [ ], pkgs, lib ? pkgs.lib
|
||||||
, extraSpecialArgs ? { }, check ? true
|
, extraSpecialArgs ? { }, check ? true
|
||||||
# Deprecated:
|
# Deprecated:
|
||||||
|
|
Loading…
Reference in a new issue