2018-07-15 08:33:32 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
name = "mpd";
|
|
|
|
|
|
|
|
cfg = config.services.mpd;
|
|
|
|
|
|
|
|
mpdConf = pkgs.writeText "mpd.conf" ''
|
|
|
|
music_directory "${cfg.musicDirectory}"
|
|
|
|
playlist_directory "${cfg.playlistDirectory}"
|
|
|
|
${lib.optionalString (cfg.dbFile != null) ''
|
|
|
|
db_file "${cfg.dbFile}"
|
|
|
|
''}
|
|
|
|
state_file "${cfg.dataDir}/state"
|
|
|
|
sticker_file "${cfg.dataDir}/sticker.sql"
|
|
|
|
log_file "syslog"
|
|
|
|
|
|
|
|
${optionalString (cfg.network.listenAddress != "any")
|
|
|
|
''bind_to_address "${cfg.network.listenAddress}"''}
|
|
|
|
${optionalString (cfg.network.port != 6600)
|
|
|
|
''port "${toString cfg.network.port}"''}
|
|
|
|
|
|
|
|
${cfg.extraConfig}
|
|
|
|
'';
|
|
|
|
|
|
|
|
in {
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.mpd = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable MPD, the music player daemon.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
musicDirectory = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
default = "${config.home.homeDirectory}/music";
|
|
|
|
defaultText = "$HOME/music";
|
|
|
|
description = ''
|
|
|
|
The directory where mpd reads music from.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
playlistDirectory = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
default = "${cfg.dataDir}/playlists";
|
|
|
|
defaultText = ''''${dataDir}/playlists'';
|
|
|
|
description = ''
|
|
|
|
The directory where mpd stores playlists.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Extra directives added to to the end of MPD's configuration
|
|
|
|
file, <filename>mpd.conf</filename>. Basic configuration
|
|
|
|
like file location and uid/gid is added automatically to the
|
|
|
|
beginning of the file. For available options see
|
|
|
|
<citerefentry>
|
|
|
|
<refentrytitle>mpd.conf</refentrytitle>
|
|
|
|
<manvolnum>5</manvolnum>
|
|
|
|
</citerefentry>.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
dataDir = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
default = "${config.xdg.dataHome}/${name}";
|
|
|
|
defaultText = "$XDG_DATA_HOME/mpd";
|
|
|
|
description = ''
|
|
|
|
The directory where MPD stores its state, tag cache,
|
|
|
|
playlists etc.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
network = {
|
|
|
|
|
|
|
|
listenAddress = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "127.0.0.1";
|
|
|
|
example = "any";
|
|
|
|
description = ''
|
|
|
|
The address for the daemon to listen on.
|
|
|
|
Use <literal>any</literal> to listen on all addresses.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
port = mkOption {
|
2019-08-19 20:37:48 +02:00
|
|
|
type = types.port;
|
2018-07-15 08:33:32 +02:00
|
|
|
default = 6600;
|
|
|
|
description = ''
|
|
|
|
The TCP port on which the the daemon will listen.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
dbFile = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = "${cfg.dataDir}/tag_cache";
|
|
|
|
defaultText = ''''${dataDir}/tag_cache'';
|
|
|
|
description = ''
|
|
|
|
The path to MPD's database. If set to
|
|
|
|
<literal>null</literal> the parameter is omitted from the
|
|
|
|
configuration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
|
|
|
systemd.user.services.mpd = {
|
|
|
|
Unit = {
|
|
|
|
After = [ "network.target" "sound.target" ];
|
|
|
|
Description = "Music Player Daemon";
|
|
|
|
};
|
2018-07-29 18:15:50 +02:00
|
|
|
|
2018-07-15 08:33:32 +02:00
|
|
|
Install = {
|
|
|
|
WantedBy = [ "default.target" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
Service = {
|
2018-07-29 18:15:50 +02:00
|
|
|
Environment = "PATH=${config.home.profileDirectory}/bin";
|
2018-07-15 08:33:32 +02:00
|
|
|
ExecStart = "${pkgs.mpd}/bin/mpd --no-daemon ${mpdConf}";
|
|
|
|
Type = "notify";
|
|
|
|
ExecStartPre = ''${pkgs.bash}/bin/bash -c "${pkgs.coreutils}/bin/mkdir -p '${cfg.dataDir}' '${cfg.playlistDirectory}'"'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|