fix: missing pkgs parameter iin homeConfigurations
This commit is contained in:
@@ -91,8 +91,9 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
homeConfigurations = {
|
homeConfigurations = forAllSystems ({pkgs, ...}: {
|
||||||
"guz" = home-manager.lib.homeManagerConfiguration {
|
"guz" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
inherit pkgs;
|
||||||
extraSpecialArgs = {inherit inputs self;};
|
extraSpecialArgs = {inherit inputs self;};
|
||||||
modules = [
|
modules = [
|
||||||
inputs.stylix.homeManagerModules.stylix
|
inputs.stylix.homeManagerModules.stylix
|
||||||
@@ -102,6 +103,7 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
"guz-lite" = home-manager.lib.homeManagerConfiguration {
|
"guz-lite" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
inherit pkgs;
|
||||||
extraSpecialArgs = {inherit inputs self;};
|
extraSpecialArgs = {inherit inputs self;};
|
||||||
modules = [
|
modules = [
|
||||||
inputs.stylix.homeManagerModules.stylix
|
inputs.stylix.homeManagerModules.stylix
|
||||||
@@ -111,12 +113,13 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
"worm" = home-manager.lib.homeManagerConfiguration {
|
"worm" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
inherit pkgs;
|
||||||
extraSpecialArgs = {inherit inputs self;};
|
extraSpecialArgs = {inherit inputs self;};
|
||||||
modules = [
|
modules = [
|
||||||
./home/worm
|
./home/worm
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
});
|
||||||
|
|
||||||
nixosModules = {
|
nixosModules = {
|
||||||
neovim = inputs.neovim.nixosModules.default;
|
neovim = inputs.neovim.nixosModules.default;
|
||||||
|
|||||||
Reference in New Issue
Block a user