Extract bluetooth settings from laptop module
1 file changed, 14 insertions(+), 0 deletions(-)
changed files
A system/settings/hardware/bluetooth-audio.nix
@@ -0,0 +1,14 @@ +{ config, pkgs, ... }: + +{ + hardware = { + bluetooth = { + package = pkgs.bluezFull; + }; + pulseaudio = { + extraModules = with pkgs; [ + pulseaudio-modules-bt + ]; + }; + }; +}