mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 08:46:25 +00:00
14 lines
232 B
Nix
14 lines
232 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
# https://nixos.wiki/wiki/Bluetooth
|
||
|
hardware.bluetooth = {
|
||
|
enable = true;
|
||
|
package = pkgs.bluezFull;
|
||
|
settings = {
|
||
|
General = {
|
||
|
Enable = "Source,Sink,Media,Socket";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|