nix-config/home/ncmpcpp.nix
Donovan Glover d938459ef7
meta: Drop ncmpcpp
Replaced in favor of rmpc, which has support for smaller screen sizes
and therefore works on the PinePhone.
2024-07-28 21:21:13 -04:00

23 lines
311 B
Nix

{ config, ... }:
let
inherit (config.xdg.userDirs) music;
musicDirectory = music;
in
{
services.mpd = {
enable = true;
inherit musicDirectory;
extraConfig = ''
audio_output {
type "pipewire"
name "PipeWire Sound Server"
}
auto_update "yes"
'';
};
}