NiksOS/system/hardware/bluetooth.nix

16 lines
319 B
Nix

{
lib,
config,
pkgs,
...
}: {
options.niksos.bluetooth = lib.mkEnableOption "bluetooth related stuff.";
config = lib.mkIf config.niksos.bluetooth {
hardware.bluetooth = {
enable = true;
input.General.ClassicBondedOnly = false;
};
environment.systemPackages = [pkgs.bluetui];
};
}