niksos/modules/services/mpd.nix
jacekpoz 59febb2149
move the config' arg to a custom module (big)
shoutout to raf for pointing out how retarded this was
this was needed very much
2024-02-29 00:29:56 +01:00

44 lines
1.2 KiB
Nix

{
config,
lib,
...
}: with lib; let
cfg = config.myOptions.services.mpd;
username = config.myOptions.other.system.username;
in {
options.myOptions.services.mpd.enable = mkEnableOption "enable mpd";
config = mkIf cfg.enable {
home-manager.users.${username} = {
services = {
mpd = {
enable = true;
musicDirectory = "~/Music";
extraConfig = ''
audio_output {
type "pipewire"
name "PipeWire Sound Server"
}
follow_outside_symlinks "yes"
follow_inside_symlinks "yes"
'';
};
mpd-mpris = {
enable = true;
mpd = {
host = "127.0.0.1";
network = "unix";
port = 6600;
useLocal = true;
};
};
playerctld = {
enable = true;
};
};
};
};
}