Files
MinOS-prime/nixos/bluetooth.nix
2025-07-11 18:08:12 +03:00

12 lines
184 B
Nix

{ pkgs, ... }:
{
# Enable Bluetooth
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = false;
environment.systemPackages = with pkgs; [
overskride
];
}