about summary refs log tree commit diff
path: root/nixos/modules/services/blockchain
diff options
context:
space:
mode:
authorh7x4 <h7x4@nani.wtf>2023-11-30 19:03:14 +0100
committerh7x4 <h7x4@nani.wtf>2023-11-30 19:03:14 +0100
commit79d3d59f58cccc6c1d167b8f6b8b6bd27b663aa7 (patch)
treebb9b09a4473a0ebcd6e7f4e19129bd5ea7e2a1f1 /nixos/modules/services/blockchain
parent9b11307f42bb14d8f3ba50eb8bd80ab7dbbbec9f (diff)
treewide: replace `mkPackageOptionMD` with `mkPackageOption`
Diffstat (limited to 'nixos/modules/services/blockchain')
-rw-r--r--nixos/modules/services/blockchain/ethereum/erigon.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/blockchain/ethereum/erigon.nix b/nixos/modules/services/blockchain/ethereum/erigon.nix
index 945a373d12749..b8edee33e7c64 100644
--- a/nixos/modules/services/blockchain/ethereum/erigon.nix
+++ b/nixos/modules/services/blockchain/ethereum/erigon.nix
@@ -13,7 +13,7 @@ in {
     services.erigon = {
       enable = mkEnableOption (lib.mdDoc "Ethereum implementation on the efficiency frontier");
 
-      package = mkPackageOptionMD pkgs "erigon" { };
+      package = mkPackageOption pkgs "erigon" { };
 
       extraArgs = mkOption {
         type = types.listOf types.str;