Move audio configuration into a service module

- Move audio configuration into a service module to make it easily
  usable by multiple hosts.
- Allow configuration of AirPlay 2 name.
- Don't set MQTT topic of Shairport-Sync (AirPlay 2) explictly. Defaults
  to hostname now.
- Don't set sound.enable anymore, since its not needed.
This commit is contained in:
June 2023-11-02 21:57:08 +01:00
commit c9310374af
13 changed files with 246 additions and 155 deletions

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
imports = [
../../../modules/services/audio
];
ccchh.services.audio = {
enable = true;
name = "Audio";
};
users.users.chaos.extraGroups = [ "pipewire" ];
}