dotfiles/nixos/modules/bluetooth.nix
Bart van der Braak 8dd28119e7 full restructure
2025-01-17 01:25:44 +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
];
}