From 82eac6549fe01ecd4b8aec799f1dba37eb253ecd Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Tue, 12 Jan 2021 17:01:45 +0100 Subject: Extract bluetooth settings from laptop module --- system/settings/hardware/bluetooth-audio.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 system/settings/hardware/bluetooth-audio.nix (limited to 'system/settings/hardware/bluetooth-audio.nix') diff --git a/system/settings/hardware/bluetooth-audio.nix b/system/settings/hardware/bluetooth-audio.nix new file mode 100644 index 00000000..69f46984 --- /dev/null +++ b/system/settings/hardware/bluetooth-audio.nix @@ -0,0 +1,14 @@ +{ config, pkgs, ... }: + +{ + hardware = { + bluetooth = { + package = pkgs.bluezFull; + }; + pulseaudio = { + extraModules = with pkgs; [ + pulseaudio-modules-bt + ]; + }; + }; +} -- cgit 1.4.1