Skip to content

Commit

Permalink
fix(modules/prysm-beacon): bad inherit statement for mkArgs opts (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmcgee committed Mar 10, 2023
1 parent 6346ca7 commit 5da4d3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/prysm-beacon/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ in {
opts = import ./args.nix lib;
in
mkArgs {
inherit (cfg) args opts;
inherit opts;
inherit (cfg) args;
};

# filter out certain args which need to be treated differently
Expand Down

0 comments on commit 5da4d3e

Please sign in to comment.