diff options
author | makefu <github@syntax-fehler.de> | 2020-11-18 23:21:06 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2020-11-18 23:21:06 +0100 |
commit | 6a8a7781bcbeeee23354e7caaeb8ecd80fc00218 (patch) | |
tree | 491c37c19e127f6bb3ff98e68c0ee698bd6c18a6 | |
parent | f4ea172e1ff873f7311beeac9eb0b4a86f97c76a (diff) |
ma snapraid module: fix warning about string
-rw-r--r-- | makefu/3modules/snapraid.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makefu/3modules/snapraid.nix b/makefu/3modules/snapraid.nix index 9c7854787..1a2c08475 100644 --- a/makefu/3modules/snapraid.nix +++ b/makefu/3modules/snapraid.nix @@ -86,7 +86,7 @@ let ''; }; extraConfig = mkOption { - type = types.string; + type = types.lines; default = ""; description = '' Extra configuration to be appended to the snapraid conf file. |