diff --git a/extra/bluetooth-audio.nix b/extra/bluetooth-audio.nix index 4922868..f78302c 100644 --- a/extra/bluetooth-audio.nix +++ b/extra/bluetooth-audio.nix @@ -1,5 +1,7 @@ { config, lib, pkgs, ... }: - +let + unstable = import { config = { allowUnfree = true; }; }; +in { hardware.bluetooth = { enable = true; @@ -11,4 +13,7 @@ }; }; services.blueman.enable = true; + environment.systemPackages = with pkgs; [ + unstable.sony-headphones-client + ]; }