15 lines
235 B
Nix
15 lines
235 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = [
|
||
|
pkgs.bluez
|
||
|
];
|
||
|
|
||
|
hardware.bluetooth = {
|
||
|
enable = true;
|
||
|
powerOnBoot = true; # powers up the default Bluetooth controller on boot
|
||
|
};
|
||
|
|
||
|
services.blueman.enable = true;
|
||
|
}
|