14 lines
245 B
Nix
14 lines
245 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
# Enable bluetooth
|
||
|
hardware.bluetooth = {
|
||
|
enable = true;
|
||
|
powerOnBoot = true;
|
||
|
|
||
|
settings = {
|
||
|
General = {
|
||
|
Enable = "Source,Sink,Media,Socket";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|