dotfiles/modules/core/bluetooth.nix

13 lines
233 B
Nix
Raw Normal View History

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