From 64e884c3a1a35d29aa82ea3e24382efe450cc16d Mon Sep 17 00:00:00 2001 From: Cody Schafer Date: Sun, 16 Jun 2024 03:13:38 -0400 Subject: [PATCH] nixos/lighthouse: update networks for 5.2.0 This list matches the networks supported by lighthouse 5.2.0 --- nixos/modules/services/blockchain/ethereum/lighthouse.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/blockchain/ethereum/lighthouse.nix b/nixos/modules/services/blockchain/ethereum/lighthouse.nix index dcf56e187eae..a5ace1a9450f 100644 --- a/nixos/modules/services/blockchain/ethereum/lighthouse.nix +++ b/nixos/modules/services/blockchain/ethereum/lighthouse.nix @@ -192,7 +192,7 @@ in { }; network = mkOption { - type = types.enum [ "mainnet" "prater" "goerli" "gnosis" "kiln" "ropsten" "sepolia" ]; + type = types.enum [ "mainnet" "gnosis" "chiado" "sepolia" "holesky" ]; default = "mainnet"; description = '' The network to connect to. Mainnet is the default ethereum network.