forked from DGNum/infrastructure
feat(hive): Make code more compact
This commit is contained in:
parent
6b827e56b1
commit
817c723135
1 changed files with 6 additions and 10 deletions
10
hive.nix
10
hive.nix
|
@ -44,14 +44,10 @@ let
|
||||||
###
|
###
|
||||||
# Function to create arguments based on the node
|
# Function to create arguments based on the node
|
||||||
#
|
#
|
||||||
mkArgs =
|
mkArgs = node: {
|
||||||
node:
|
|
||||||
let
|
|
||||||
lib' = (mkNixpkgs' node).lib;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
lib = import sources.nix-lib {
|
lib = import sources.nix-lib {
|
||||||
lib = lib';
|
inherit (mkNixpkgs' node) lib;
|
||||||
|
|
||||||
keysRoot = ./keys;
|
keysRoot = ./keys;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue