summary refs log tree commit diff
diff options
context:
space:
mode:
authorLassulus <github@lassul.us>2021-08-17 11:32:35 +0200
committerGitHub <noreply@github.com>2021-08-17 11:32:35 +0200
commitfc50593e17ecff66873d0a581108c6629da1f598 (patch)
tree2be2ce4e42297c54e07b9fc5d135c9109e5da34a
parent5ee869388882ba63d475bbdb58a6acfc7e411971 (diff)
parent090f33f788749b9d2a9105ff17d6e1e5ff36019b (diff)
downloadnixpkgs-fc50593e17ecff66873d0a581108c6629da1f598.tar
nixpkgs-fc50593e17ecff66873d0a581108c6629da1f598.tar.gz
nixpkgs-fc50593e17ecff66873d0a581108c6629da1f598.tar.bz2
nixpkgs-fc50593e17ecff66873d0a581108c6629da1f598.tar.lz
nixpkgs-fc50593e17ecff66873d0a581108c6629da1f598.tar.xz
nixpkgs-fc50593e17ecff66873d0a581108c6629da1f598.tar.zst
nixpkgs-fc50593e17ecff66873d0a581108c6629da1f598.zip
Merge pull request #132553 from iceman-p/go-ethereum-snap
nixos/geth: Change default to snap sync
-rw-r--r--nixos/modules/services/blockchain/ethereum/geth.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/blockchain/ethereum/geth.nix b/nixos/modules/services/blockchain/ethereum/geth.nix
index be3f40f6bd8..6c2df95886e 100644
--- a/nixos/modules/services/blockchain/ethereum/geth.nix
+++ b/nixos/modules/services/blockchain/ethereum/geth.nix
@@ -83,8 +83,8 @@ let
       };
 
       syncmode = mkOption {
-        type = types.enum [ "fast" "full" "light" ];
-        default = "fast";
+        type = types.enum [ "snap" "fast" "full" "light" ];
+        default = "snap";
         description = "Blockchain sync mode.";
       };