nixos/hardware/bluetooth/default.nix
Andreas Zweili ceafa7a39d Remove a depricated option
LDAC etc. come now with Pulseaudio by default.
2022-05-31 13:37:19 +02:00

25 lines
412 B
Nix

{ pkgs, ... }:
{
# Blueooth support in general
hardware.bluetooth = {
enable = true;
powerOnBoot = false;
};
# Blueman applet
services.blueman.enable = true;
# aptx/LDAC support
hardware.pulseaudio = {
package = pkgs.pulseaudioFull;
};
systemd.user.services.blueman-applet = {
partOf = [ "graphical-session.target" ];
wantedBy = [ "graphical-session.target" ];
};
}