Skip to content

Commit

Permalink
fix(pops.hive): add missing hmLib
Browse files Browse the repository at this point in the history
  • Loading branch information
GTrunSec committed May 1, 2024
1 parent 75d0bae commit 82953ea
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/hive/transformers/homeConfiguration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let

l = lib // builtins;

hmLib = import (evaled.config.bee.home + /modules/lib/stdlib-extended.nix) lib;
hmLib = import (evaled.config.bee.home + /modules/lib/stdlib-extended.nix) l;

hmModules = import (evaled.config.bee.home + /modules/modules.nix) {
inherit (evaled.config.bee) pkgs;
Expand All @@ -26,8 +26,9 @@ let
eval =
extra:
lib.evalModules {
specialArgs = {
specialArgs = rec {
modulesPath = l.toString (evaled.config.bee.home + /modules);
lib = hmLib;
};
modules = [
beeModule
Expand Down

0 comments on commit 82953ea

Please sign in to comment.