18 lines
254 B
Nix
18 lines
254 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
powerOnBoot = true;
|
|
settings = {
|
|
General = {
|
|
Enable = "Source,Sink,Media,Socket";
|
|
};
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
blueman
|
|
];
|
|
}
|