flake/machines/nixos/hardware/misc/bluetooth.nix

14 lines
258 B
Nix
Raw Normal View History

{pkgs, ...}:
2023-09-19 00:17:43 +00:00
# Bluetooth
{
# Bluetooth manager
#services.blueman.enable = true;
environment.systemPackages = with pkgs; [blueberry];
2023-09-19 00:17:43 +00:00
# Bluetooth service
hardware.bluetooth = {
enable = true;
settings.General.FastConnectable = true;
};
}