1
0
Fork 0
nix-configuration/modules/system/bluetooth.nix

44 lines
974 B
Nix
Raw Normal View History

# Configures bluetooth.
{
lib,
config,
pkgs,
...
}:
2024-02-29 14:53:34 +00:00
let
cfg = config.aux.system.bluetooth;
2024-02-29 14:53:34 +00:00
in
{
options = {
aux.system.bluetooth = {
2024-09-08 15:58:56 +00:00
enable = lib.mkEnableOption "Enables bluetooth.";
2024-11-06 15:42:06 +00:00
adapter = lib.mkOption {
type = lib.types.str;
description = "The MAC address of your primary Bluetooth adapter Used to install device configs.";
default = "";
};
2024-10-18 20:14:33 +00:00
experimental.enable = lib.mkEnableOption "Enables experimental features, like device power reporting.";
};
};
2024-02-29 14:53:34 +00:00
config = lib.mkIf cfg.enable {
# Set up Bluetooth
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
2024-10-18 20:14:33 +00:00
settings = lib.mkIf cfg.experimental.enable {
General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
KernelExperimental = true;
};
};
};
2024-02-29 14:53:34 +00:00
# Add Bluetooth LE audio support
environment.systemPackages = with pkgs; [ liblc3 ];
};
}