all repos — nixfiles @ 82eac6549fe01ecd4b8aec799f1dba37eb253ecd

System and user configuration, managed by nix and home-manager

Extract bluetooth settings from laptop module

Alan Pearce
commit

82eac6549fe01ecd4b8aec799f1dba37eb253ecd

parent

2ad5213fbb065d59e8435669f71b054bd9fd52f5

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 + ]; + }; + }; +}