nixos/extra/bluetooth-audio.nix

17 lines
317 B
Nix
Raw Normal View History

2020-11-16 21:14:46 +01:00
{ config, lib, pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
package = pkgs.bluezFull;
2021-06-02 10:37:28 +02:00
settings = {
2020-11-16 21:14:46 +01:00
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
services.blueman.enable = true;
environment.systemPackages = with pkgs; [
2022-05-29 18:27:54 +02:00
sony-headphones-client
];
2020-11-16 21:14:46 +01:00
}