20 lines
344 B
Nix
20 lines
344 B
Nix
|
{ lib, config, ... }:
|
||
|
with lib;
|
||
|
{
|
||
|
options.enableBluetooth = mkOption {
|
||
|
type = types.bool;
|
||
|
default = true;
|
||
|
example = false;
|
||
|
description = ''
|
||
|
Enable the bluetooth stack
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
config = mkIf config.enableBluetooth {
|
||
|
hardware.bluetooth = {
|
||
|
enable = true;
|
||
|
};
|
||
|
services.blueman.enable = true;
|
||
|
};
|
||
|
}
|