dotfiles/nixos/modules/bluetooth.nix
2025-01-16 23:26:43 +01:00

12 lines
No EOL
250 B
Nix

{ pkgs, ... }:
{
# Only power the Bluetooth controller after logon
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = false;
# Use Overskride bluetooth client
environment.systemPackages = with pkgs; [
overskride
];
}