From 1d3380afba625fdfcc131033e571140a09a993af Mon Sep 17 00:00:00 2001 From: Noah Fontes Date: Fri, 22 Jul 2022 12:29:04 -0700 Subject: [PATCH] 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. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 01dba3db0..c2885d624 100644 --- a/flake.nix +++ b/flake.nix @@ -21,7 +21,7 @@ darwinModule = self.darwinModules.default; lib = { - hm = import ./modules/lib { lib = nixpkgs.lib; }; + hm = (import ./modules/lib/stdlib-extended.nix nixpkgs.lib).hm; homeManagerConfiguration = { modules ? [ ], pkgs, lib ? pkgs.lib , extraSpecialArgs ? { }, check ? true # Deprecated: