From 0fe6f67b20937f515717caa72212f4415ea5d8ac Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Fri, 17 Jan 2025 12:02:49 +0100 Subject: [PATCH] modules/nix/core/home-manager: import lib' in extraSpecialArgs --- modules/nix/core/home-manager.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/nix/core/home-manager.nix b/modules/nix/core/home-manager.nix index c8befd6..bae18aa 100644 --- a/modules/nix/core/home-manager.nix +++ b/modules/nix/core/home-manager.nix @@ -5,6 +5,7 @@ ... }: let inherit (config.local.systemVars) username; + lib' = import ../../../shared/lib inputs.nixpkgs.lib; in { imports = [ inputs.home-manager.nixosModules.default @@ -16,7 +17,7 @@ in { useGlobalPkgs = true; useUserPackages = true; - extraSpecialArgs = {inherit inputs;}; + extraSpecialArgs = {inherit inputs lib';}; sharedModules = [../../hm]; };