nix-config/system/hardware/bluetooth.nix

15 lines
291 B
Nix
Raw Permalink Normal View History

2025-07-05 00:02:39 +02:00
{
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;
};
}