15 lines
291 B
Nix
15 lines
291 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}:
|
||
|
with lib; let
|
||
|
cfg = config.system.hardware.bluetooth;
|
||
|
in {
|
||
|
options.system.hardware.bluetooth.enable = mkEnableOption "Enable bluetooth";
|
||
|
config = mkIf cfg.enable {
|
||
|
hardware.bluetooth.enable = cfg.enable;
|
||
|
services.blueman.enable = cfg.enable;
|
||
|
};
|
||
|
}
|