summary refs log tree commit diff
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2021-01-10 23:56:39 +0200
committerDoron Behar <doron.behar@gmail.com>2021-01-11 09:07:34 +0200
commit4ce7f285080b9054d287e63ad8ff8a80c19b1a22 (patch)
tree5fbe1d4647eef5b1a8a98288c0fe9c3fef305156
parentd085417683cedabb1eaf420ca0eb128ecfb3a175 (diff)
downloadnixpkgs-4ce7f285080b9054d287e63ad8ff8a80c19b1a22.tar
nixpkgs-4ce7f285080b9054d287e63ad8ff8a80c19b1a22.tar.gz
nixpkgs-4ce7f285080b9054d287e63ad8ff8a80c19b1a22.tar.bz2
nixpkgs-4ce7f285080b9054d287e63ad8ff8a80c19b1a22.tar.lz
nixpkgs-4ce7f285080b9054d287e63ad8ff8a80c19b1a22.tar.xz
nixpkgs-4ce7f285080b9054d287e63ad8ff8a80c19b1a22.tar.zst
nixpkgs-4ce7f285080b9054d287e63ad8ff8a80c19b1a22.zip
nixos/mpd: use credentials only if needed
-rw-r--r--nixos/modules/services/audio/mpd.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/nixos/modules/services/audio/mpd.nix b/nixos/modules/services/audio/mpd.nix
index c8e5045f6dc..2e5953dc6f4 100644
--- a/nixos/modules/services/audio/mpd.nix
+++ b/nixos/modules/services/audio/mpd.nix
@@ -40,7 +40,7 @@ let
       }
     ''}
 
-    ${credentialsPlaceholder cfg.credentials}
+    ${optionalString (cfg.credentials != []) (credentialsPlaceholder cfg.credentials)}
 
     ${cfg.extraConfig}
   '';
@@ -234,9 +234,10 @@ in {
           ExecStartPre = pkgs.writeShellScript "mpd-start-pre" ''
             set -euo pipefail
             install -m 600 ${mpdConf} /run/mpd/mpd.conf
-            ${pkgs.replace}/bin/replace-literal -fe ${
+            ${optionalString (cfg.credentials != [])
+            "${pkgs.replace}/bin/replace-literal -fe ${
               concatStringsSep " -a " (imap0 (i: c: "\"{{password-${toString i}}}\" \"$(cat ${c.passwordFile})\"") cfg.credentials)
-            } /run/mpd/mpd.conf
+            } /run/mpd/mpd.conf"}
           '';
           RuntimeDirectory = "mpd";
           Type = "notify";