feat: create syncthing and pipewire services

This commit is contained in:
Zhongheng Liu 2024-08-08 18:21:49 +08:00
commit 899c1b4a26
5 changed files with 46 additions and 6 deletions

View file

@ -0,0 +1,21 @@
{pkgs, ...}: {
services.pipewire = {
enable = true;
alsa = {
enable = true;
support32Bit = true;
};
pulse.enable = true;
jack.enable = true;
wireplumber.configPackages = [
(pkgs.writeTextDir "share/wireplumber/bluetooth.lua.d/51-bluez-config.lua" ''
bluez_monitor.properties = {
["bluez5.enable-sbc-xq"] = true,
["bluez5.enable-msbc"] = true,
["bluez5.enable-hw-volume"] = true,
["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]"
}
'')
];
};
}