Skip to content

Commit

Permalink
fix(hive.bee): drop the extraModules check
Browse files Browse the repository at this point in the history
  • Loading branch information
GTrunSec committed May 1, 2024
1 parent 6547c3a commit 75d0bae
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion src/hive/checks/bee.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ let
let
checked = l.evalModules {
modules = [
locatedConfig
# recursion encountered problem
# This error will be triggered when you define an Option.path
# from {boot,fileSystems,swapXxx} in other modules (Exp: (test with disko.module).
# But using nixos' eval-config will not. Only in bee.check
# So I dropped the locatedConfig here, only eval the beeConfig in this stage
# locatedConfig
{ bee = locatedConfig.bee; }
beeModule
{
config._module.check = true;
Expand Down

0 comments on commit 75d0bae

Please sign in to comment.