From 1ef74a785480396ba179200196cac8256a67cfce Mon Sep 17 00:00:00 2001 From: happysalada Date: Mon, 7 Nov 2022 09:01:51 -0500 Subject: [PATCH] lighthouse: module add defaults --- nixos/modules/services/blockchain/ethereum/lighthouse.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/blockchain/ethereum/lighthouse.nix b/nixos/modules/services/blockchain/ethereum/lighthouse.nix index 57e32132f1d1..6002b16785a7 100644 --- a/nixos/modules/services/blockchain/ethereum/lighthouse.nix +++ b/nixos/modules/services/blockchain/ethereum/lighthouse.nix @@ -10,6 +10,7 @@ in { services.lighthouse = { beacon = mkOption { description = lib.mdDoc "Beacon node"; + default = {}; type = types.submodule { options = { enable = lib.mkEnableOption (lib.mdDoc "Lightouse Beacon node"); @@ -143,6 +144,7 @@ in { validator = mkOption { description = lib.mdDoc "Validator node"; + default = {}; type = types.submodule { options = { enable = mkOption {