fix(hive.nix): Remove inifinite recursion
Some checks failed
Build all the nodes / bridge01 (push) Successful in 3m14s
Build all the nodes / geo02 (push) Successful in 3m30s
Build all the nodes / geo01 (push) Successful in 3m34s
Build all the nodes / storage01 (push) Successful in 3m55s
Build all the nodes / rescue01 (push) Successful in 3m56s
Build all the nodes / compute01 (push) Successful in 4m7s
Run pre-commit on all files / check (push) Successful in 24s
Build all the nodes / vault01 (push) Successful in 1m30s
Build all the nodes / web02 (push) Successful in 1m23s
Build all the nodes / web01 (push) Successful in 2m2s
Build all the nodes / web03 (push) Has been cancelled
Some checks failed
Build all the nodes / bridge01 (push) Successful in 3m14s
Build all the nodes / geo02 (push) Successful in 3m30s
Build all the nodes / geo01 (push) Successful in 3m34s
Build all the nodes / storage01 (push) Successful in 3m55s
Build all the nodes / rescue01 (push) Successful in 3m56s
Build all the nodes / compute01 (push) Successful in 4m7s
Run pre-commit on all files / check (push) Successful in 24s
Build all the nodes / vault01 (push) Successful in 1m30s
Build all the nodes / web02 (push) Successful in 1m23s
Build all the nodes / web01 (push) Successful in 2m2s
Build all the nodes / web03 (push) Has been cancelled
This commit is contained in:
parent
eb5b8740a8
commit
3a58ac3fdc
1 changed files with 3 additions and 3 deletions
6
hive.nix
6
hive.nix
|
@ -75,11 +75,11 @@ let
|
|||
# Function to create arguments based on the node
|
||||
#
|
||||
mkArgs = node: rec {
|
||||
lib = nodePkgs.lib // {
|
||||
lib = sourcePkgs.lib // {
|
||||
extra = nix-lib;
|
||||
};
|
||||
|
||||
nodePkgs = nodePkgs node;
|
||||
sourcePkgs = nodePkgs node;
|
||||
meta = (import ./meta) lib;
|
||||
|
||||
nodeMeta = meta.nodes.${node};
|
||||
|
@ -101,7 +101,7 @@ in
|
|||
|
||||
registry = {
|
||||
nixos = {
|
||||
evalConfig = args: import "${args.specialArgs.nodePkgs.path}/nixos/lib/eval-config.nix" args;
|
||||
evalConfig = args: import "${args.specialArgs.sourcePkgs.path}/nixos/lib/eval-config.nix" args;
|
||||
defaults =
|
||||
{ name, nodeMeta, ... }:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue