1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 00:18:30 +02:00

mpd: configurable executable package

This commit is contained in:
arcnmx 2020-10-02 13:49:40 -07:00 committed by Robert Helgesson
parent b5291e995f
commit 99fbae0ec5
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -41,6 +41,15 @@ in {
'';
};
package = mkOption {
type = types.package;
default = pkgs.mpd;
defaultText = "pkgs.mpd";
description = ''
The MPD package to run.
'';
};
musicDirectory = mkOption {
type = with types; either path str;
default = "${config.home.homeDirectory}/music";
@ -140,7 +149,7 @@ in {
Service = {
Environment = "PATH=${config.home.profileDirectory}/bin";
ExecStart = "${pkgs.mpd}/bin/mpd --no-daemon ${mpdConf}";
ExecStart = "${cfg.package}/bin/mpd --no-daemon ${mpdConf}";
Type = "notify";
ExecStartPre = ''${pkgs.bash}/bin/bash -c "${pkgs.coreutils}/bin/mkdir -p '${cfg.dataDir}' '${cfg.playlistDirectory}'"'';
};