2023-10-13 21:04:24 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: with lib; let
|
|
|
|
cfg = config.myOptions.services.mpd;
|
2024-02-29 00:29:56 +01:00
|
|
|
username = config.myOptions.other.system.username;
|
2023-10-13 21:04:24 +02:00
|
|
|
in {
|
2024-04-05 22:59:32 +02:00
|
|
|
options.myOptions.services.mpd.enable = mkEnableOption "mpd";
|
2023-10-03 19:22:24 +02:00
|
|
|
|
2023-10-13 21:04:24 +02:00
|
|
|
config = mkIf cfg.enable {
|
2024-02-29 00:29:56 +01:00
|
|
|
home-manager.users.${username} = {
|
2023-10-13 21:04:24 +02:00
|
|
|
services = {
|
|
|
|
mpd = {
|
|
|
|
enable = true;
|
|
|
|
musicDirectory = "~/Music";
|
|
|
|
extraConfig = ''
|
|
|
|
audio_output {
|
|
|
|
type "pipewire"
|
|
|
|
name "PipeWire Sound Server"
|
|
|
|
}
|
2023-09-08 16:10:15 +02:00
|
|
|
|
2023-10-13 21:04:24 +02:00
|
|
|
follow_outside_symlinks "yes"
|
|
|
|
follow_inside_symlinks "yes"
|
|
|
|
'';
|
|
|
|
};
|
2023-10-03 19:22:24 +02:00
|
|
|
|
2023-10-13 21:04:24 +02:00
|
|
|
mpd-mpris = {
|
|
|
|
enable = true;
|
|
|
|
mpd = {
|
|
|
|
host = "127.0.0.1";
|
|
|
|
network = "unix";
|
|
|
|
port = 6600;
|
|
|
|
useLocal = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
playerctld = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
};
|
2023-10-03 19:22:24 +02:00
|
|
|
};
|
2023-09-08 16:10:15 +02:00
|
|
|
};
|
|
|
|
}
|