diff options
author | Alan Pearce | 2022-10-07 23:21:45 +0200 |
---|---|---|
committer | Alan Pearce | 2022-10-08 01:36:11 +0200 |
commit | ad252750a5f086a3fecceacc5a5eaff3d080ab9d (patch) | |
tree | 5c1f9fc2dc5c18249573c3ccb832c8803b85b470 /system/settings/services | |
parent | ba1fcdddc1eee9b740dfb6c5f931cb489dae66ee (diff) | |
download | nixfiles-ad252750a5f086a3fecceacc5a5eaff3d080ab9d.tar.lz nixfiles-ad252750a5f086a3fecceacc5a5eaff3d080ab9d.tar.zst nixfiles-ad252750a5f086a3fecceacc5a5eaff3d080ab9d.zip |
airplay-sink: initialise module with shairport-sync
Diffstat (limited to 'system/settings/services')
-rw-r--r-- | system/settings/services/airplay-sink.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/system/settings/services/airplay-sink.nix b/system/settings/services/airplay-sink.nix new file mode 100644 index 00000000..5e8c147a --- /dev/null +++ b/system/settings/services/airplay-sink.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: + +{ + services.pipewire.systemWide = true; + services.shairport-sync = { + enable = true; + group = "pipewire"; + }; +} |