8 lines
165 B
Nix
8 lines
165 B
Nix
{ lib, config, ... }: lib.mkIf(config.withBluetooth) {
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
powerOnBoot = true;
|
|
};
|
|
|
|
services.blueman.enable = true;
|
|
}
|