nix-da/options/system/networking/bluetooth.nix

19 lines
393 B
Nix

{ lib, config, ... }:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.modules.system.networking.bluetooth;
in
{
options.modules.system.networking.bluetooth = {
enable = mkEnableOption "activate bluetooth capabilities";
};
config = mkIf cfg.enable {
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
services.blueman.enable = true;
};
}