aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2019-09-17 00:20:05 +0000
committerGitHub <noreply@github.com>2019-09-17 00:20:05 +0000
commitb384420f2c9365236c2dc35e95321e53df4d2f1d (patch)
tree6c5ca310c3639e692c0cf34225e20ec0b22b4ebc
parentfbd2b55715f10a5b8b2e15992dbb1ddebc9e7e29 (diff)
nixos/prosody: fix escape
-rw-r--r--nixos/modules/services/networking/prosody.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/prosody.nix b/nixos/modules/services/networking/prosody.nix
index 1ae063aa6bb..7a503e71166 100644
--- a/nixos/modules/services/networking/prosody.nix
+++ b/nixos/modules/services/networking/prosody.nix
@@ -465,7 +465,7 @@ in
modules_enabled = {
- ${ lib.concatStringsSep "\n\ \ " (lib.mapAttrsToList
+ ${ lib.concatStringsSep "\n " (lib.mapAttrsToList
(name: val: optionalString val "${toLua name};")
cfg.modules) }
${ lib.concatStringsSep "\n" (map (x: "${toLua x};") cfg.package.communityModules)}