mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
13 lines
228 B
Nix
13 lines
228 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# https://nixos.wiki/wiki/Bluetooth
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
package = pkgs.bluez;
|
|
settings = {
|
|
General = {
|
|
Enable = "Source,Sink,Media,Socket";
|
|
};
|
|
};
|
|
};
|
|
}
|