summaryrefslogtreecommitdiff
path: root/custom
diff options
context:
space:
mode:
Diffstat (limited to 'custom')
-rw-r--r--custom/mpd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/mpd.nix b/custom/mpd.nix
index 16657d5a..dd8a906a 100644
--- a/custom/mpd.nix
+++ b/custom/mpd.nix
@@ -20,7 +20,7 @@ let
20 user "${cfg.user}" 20 user "${cfg.user}"
21 group "${cfg.group}" 21 group "${cfg.group}"
22 22
23 ${concatMapStringsSep "\n" bindAddress cfg.network.listenAddresses} 23 ${concatMapStringsSep "\n" (a: "bind_to_address \"" + bindAddress a + "\"") cfg.network.listenAddresses}
24 24
25 ${cfg.extraConfig} 25 ${cfg.extraConfig}
26 ''; 26 '';