Files
sydnix/modules/nixos/bluetooth.nix
2026-03-23 11:36:43 -06:00

22 lines
415 B
Nix

{ config, lib, pkgs, ... }:
let cfg = config.sydnix.bluetooth;
in {
options.sydnix.bluetooth = {
enable = lib.mkEnableOption "BlueTooth";
};
config = lib.mkIf cfg.enable {
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
# Show battery charge of Bluetooth devices
Experimental = true;
};
};
};
};
}