58 lines
1.3 KiB
Nix
58 lines
1.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
cfg = config.modules.usrEnv.services.media.mpd;
|
|
inherit (config.modules.other.system) username;
|
|
inherit (lib) mkIf;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
systemd.services.mpd.environment = {
|
|
# https://gitlab.freedesktop.org/pipewire/pipewire/-/issues/609
|
|
XDG_RUNTIME_DIR = "/run/user/1000";
|
|
};
|
|
services.mpd = {
|
|
enable = true;
|
|
inherit (cfg) musicDirectory;
|
|
user = username;
|
|
startWhenNeeded = true;
|
|
extraConfig = ''
|
|
restore_paused "yes"
|
|
auto_update "yes"
|
|
playlist_directory "${cfg.musicDirectory}/.playlists"
|
|
|
|
audio_output {
|
|
type "pipewire"
|
|
name "PipeWire Sound Server"
|
|
}
|
|
|
|
audio_output {
|
|
type "fifo"
|
|
name "FIFO"
|
|
path "/tmp/mpd.fifo"
|
|
format "44100:16:2"
|
|
}
|
|
'';
|
|
};
|
|
home-manager.users.${username} = {
|
|
home.packages = with pkgs; [mpc-cli];
|
|
services = {
|
|
mpd-mpris = {
|
|
enable = true;
|
|
mpd = {
|
|
host = "127.0.0.1";
|
|
network = "unix";
|
|
port = 6600;
|
|
useLocal = true;
|
|
};
|
|
};
|
|
|
|
playerctld = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|