summary refs log tree commit diff
diff options
context:
space:
mode:
authorFritz Otlinghaus <fritz@otlinghaus.it>2021-01-31 12:10:14 +0100
committerFritz Otlinghaus <fritz@otlinghaus.it>2021-01-31 12:10:14 +0100
commitc3edcddb5e14a4dff4874ccdba336021e8c26240 (patch)
tree2c0fd8d1ad93a8c53fe305aa46747a74e9d72b9a
parent4015c5ca9c6ec7d4aa765c97b4413b478daa278b (diff)
downloadnixpkgs-c3edcddb5e14a4dff4874ccdba336021e8c26240.tar
nixpkgs-c3edcddb5e14a4dff4874ccdba336021e8c26240.tar.gz
nixpkgs-c3edcddb5e14a4dff4874ccdba336021e8c26240.tar.bz2
nixpkgs-c3edcddb5e14a4dff4874ccdba336021e8c26240.tar.lz
nixpkgs-c3edcddb5e14a4dff4874ccdba336021e8c26240.tar.xz
nixpkgs-c3edcddb5e14a4dff4874ccdba336021e8c26240.tar.zst
nixpkgs-c3edcddb5e14a4dff4874ccdba336021e8c26240.zip
nixos/rippled: add extraConfig type
-rw-r--r--nixos/modules/services/misc/rippled.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/misc/rippled.nix b/nixos/modules/services/misc/rippled.nix
index ef34e3a779f..2fce3b9dc94 100644
--- a/nixos/modules/services/misc/rippled.nix
+++ b/nixos/modules/services/misc/rippled.nix
@@ -389,6 +389,7 @@ in
 
       extraConfig = mkOption {
         default = "";
+        type = types.lines;
         description = ''
           Extra lines to be added verbatim to the rippled.cfg configuration file.
         '';