flake/nixos/hardware/misc/bluetooth.nix

15 lines
263 B
Nix
Raw Normal View History

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