summary refs log tree commit diff stats
path: root/system/settings/hardware/bluetooth-audio.nix
blob: 26e3ca7015508c8174e703e9eee07eaaffba6f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  config,
  pkgs,
  ...
}: {
  hardware = {
    bluetooth = {
      package = pkgs.bluezFull;
    };
    pulseaudio = {
      extraModules = with pkgs; [
        pulseaudio-modules-bt
      ];
    };
  };
}