22 lines
439 B
Nix
22 lines
439 B
Nix
{pkgs, ...}: let
|
|
# librespot = pkgs.callPackage ../../../../packages/librespot.nix {
|
|
# withPulseAudio = true;
|
|
# withRodio = true;
|
|
# };
|
|
in {
|
|
services.librespot = {
|
|
enable = true;
|
|
|
|
# package = librespot;
|
|
|
|
settings = {
|
|
# "zeroconf-port" = 12345;
|
|
# "verbose" = true;
|
|
"name" = "Ships Comms";
|
|
# "bitrate" = "320";
|
|
# "format" = "S32";
|
|
"disable-credential-cache" = true;
|
|
};
|
|
};
|
|
}
|