nixos-config/modules/workstation/bluetooth.nix

20 lines
344 B
Nix
Raw Normal View History

{ 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;
};
}