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

14 lines
263 B
Nix
Executable file

{ pkgs, ... }:
# Bluetooth
{
# Bluetooth manager
#services.blueman.enable = true;
environment.systemPackages = with pkgs; [ blueberry ];
# Bluetooth service
hardware.bluetooth = {
enable = true;
settings.General.FastConnectable = true;
};
}