nixos-configs/devices/homie/modules/music/default.nix

106 lines
2.2 KiB
Nix
Raw Normal View History

2024-09-18 15:26:17 -04:00
{
config,
lib,
pkgs,
...
}: let
inherit (lib) getExe;
inherit (config.vars) mainUser;
in {
2024-09-18 15:26:17 -04:00
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
DiscoverableTimeout = 0;
Experimental = true;
KernelExperimental = true;
};
Policy.AutoEnable = "true";
};
};
# Have pulseaudio and spotifyd start at boot but after bluetooth
2024-09-18 15:26:17 -04:00
# so bluetooth accepts sound connections from the start.
users.users.${mainUser}.linger = true;
systemd.user.services = {
pulseaudio.after = ["bluetooth.service"];
spotifyd.after = ["pulseaudio.service"];
};
systemd.user.targets.default.wants = [
"pulseaudio.service"
"spotifyd.service"
];
2024-09-18 15:26:17 -04:00
# Allow pulseaudio to be managed by MPD
hardware.pulseaudio = {
enable = true;
2024-09-23 16:37:37 -04:00
zeroconf = {
discovery.enable = true;
publish.enable = true;
};
2024-09-18 15:26:17 -04:00
extraConfig = ''
load-module module-native-protocol-tcp auth-ip-acl=127.0.0.1
'';
};
services = {
2024-09-19 13:36:02 -04:00
upower.enable = true;
2024-09-18 15:26:17 -04:00
mpd = {
enable = true;
network = {
listenAddress = "127.0.0.1";
port = 6600;
};
extraConfig = ''
audio_output {
type "pulse"
name "UE Boom 2"
sink "bluez_sink.88_C6_26_93_4B_77.a2dp_sink"
server "127.0.0.1"
}
'';
};
};
2024-09-18 15:26:17 -04:00
home-manager.users.${mainUser}.services.spotifyd = {
enable = true;
2024-09-18 15:26:17 -04:00
package = pkgs.spotifyd.override {
withMpris = false;
withKeyring = false;
2024-09-18 15:26:17 -04:00
};
settings.global = {
device_name = config.networking.hostName + " connect";
device_type = "speaker";
zeroconf_port = 33798;
autoplay = false;
backend = "pulseaudio";
bitrate = 320;
no_audio_cache = true;
volume_normalisation = false;
};
2024-09-18 15:26:17 -04:00
};
2024-09-25 15:34:56 -04:00
systemd.services.home-assistant.preStart = let
WorkingDirectory = "/var/lib/hass";
creds = config.sops.secrets.spotifyd.path;
in
getExe (pkgs.writeShellApplication {
name = "spotify-plus-creds";
text = ''
cp -f ${creds} ${WorkingDirectory}/.storage/SpotifyWebApiPython_librespot_credentials.json
'';
});
2024-09-18 15:26:17 -04:00
}