niksos/modules/services/mpd.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

2023-10-13 21:04:24 +02:00
{
config,
lib,
...
}: with lib; let
cfg = config.myOptions.services.mpd;
username = config.myOptions.other.system.username;
2023-10-13 21:04:24 +02:00
in {
options.myOptions.services.mpd.enable = mkEnableOption "enable mpd";
2023-10-03 19:22:24 +02:00
2023-10-13 21:04:24 +02:00
config = mkIf cfg.enable {
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
};
}