extra:bluetooth-audio: add sony-headphones-client

This commit is contained in:
Felix Buehler 2022-01-08 16:35:54 +01:00
parent 9c8bc2c9c8
commit 056c0ab307

View file

@ -1,5 +1,7 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{ {
hardware.bluetooth = { hardware.bluetooth = {
enable = true; enable = true;
@ -11,4 +13,7 @@
}; };
}; };
services.blueman.enable = true; services.blueman.enable = true;
environment.systemPackages = with pkgs; [
unstable.sony-headphones-client
];
} }