From b5b75d17d0d410334930475333f36db63d9c67be Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Mon, 10 Mar 2025 09:43:01 -0300 Subject: [PATCH] fix: missing pkgs parameter iin homeConfigurations --- flake.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index b483d17..7284b8b 100644 --- a/flake.nix +++ b/flake.nix @@ -91,8 +91,9 @@ }; }; - homeConfigurations = { + homeConfigurations = forAllSystems ({pkgs, ...}: { "guz" = home-manager.lib.homeManagerConfiguration { + inherit pkgs; extraSpecialArgs = {inherit inputs self;}; modules = [ inputs.stylix.homeManagerModules.stylix @@ -102,6 +103,7 @@ ]; }; "guz-lite" = home-manager.lib.homeManagerConfiguration { + inherit pkgs; extraSpecialArgs = {inherit inputs self;}; modules = [ inputs.stylix.homeManagerModules.stylix @@ -111,12 +113,13 @@ ]; }; "worm" = home-manager.lib.homeManagerConfiguration { + inherit pkgs; extraSpecialArgs = {inherit inputs self;}; modules = [ ./home/worm ]; }; - }; + }); nixosModules = { neovim = inputs.neovim.nixosModules.default;