fix(netconf/dgn-hardware): missing parenthesis
This commit is contained in:
parent
d63751578a
commit
9601caba4f
3 changed files with 3 additions and 3 deletions
3
hive.nix
3
hive.nix
|
@ -126,8 +126,7 @@ in
|
|||
};
|
||||
|
||||
netconf = {
|
||||
evalConfig =
|
||||
args: (import nixpkgs.nixos.unstable.path { }).lib.evalModules (builtins.trace args.modules args);
|
||||
evalConfig = (import nixpkgs.nixos.unstable.path { }).lib.evalModules;
|
||||
|
||||
defaults =
|
||||
{ nodeMeta, nodePath, ... }:
|
||||
|
|
|
@ -40,6 +40,7 @@ in
|
|||
];
|
||||
};
|
||||
};
|
||||
dgn-hardware.model = "EX2300-48P";
|
||||
dgn-interfaces = {
|
||||
# "ge-0/0/0" = AP-staging;
|
||||
# "ge-0/0/1" = AP-staging;
|
||||
|
|
|
@ -22,7 +22,7 @@ let
|
|||
interfaces
|
||||
// (
|
||||
let
|
||||
ports = import ./. + "${model}.nix" range;
|
||||
ports = import (./. + "/${model}.nix") range;
|
||||
in
|
||||
(mkInterfaces {
|
||||
supportPoE = true;
|
||||
|
|
Loading…
Reference in a new issue