flake/modules/core/bluetooth.nix
2024-10-30 13:51:36 +10:00

12 lines
233 B
Nix

{ pkgs, ... }:
{
# Enable Bluetooth
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = false;
# TODO: this should be managed by home-manager
environment.systemPackages = with pkgs; [
overskride
];
}