14 lines
320 B
Nix
14 lines
320 B
Nix
{config, ...}: {
|
|
flake.modules.homeManager.desktop = {pkgs, ...}: {
|
|
services.mpd = {
|
|
enable = true;
|
|
musicDirectory = "/home/${config.flake.meta.user.name}/Music";
|
|
extraConfig = ''
|
|
audio_output {
|
|
type "pipewire"
|
|
name "PipeWire Output"
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
}
|