nixos/*: fix indentation

This commit is contained in:
zowoq 2020-11-22 17:23:53 +10:00
parent bbcbaeb54d
commit dbbd289982
14 changed files with 57 additions and 55 deletions

View File

@ -29,9 +29,11 @@ in
key = mkOption {
type = types.str;
default = "";
description = "HMAC url validation key (hexadecimal encoded).
description = ''
HMAC url validation key (hexadecimal encoded).
Leave blank to disable. Without validation key, anyone can
submit proxy requests. Leave blank to disable.";
submit proxy requests. Leave blank to disable.
'';
defaultText = "No HMAC url validation. Generate with echo -n somevalue | openssl dgst -sha1 -hmac somekey";
};