Files
MinOS-prime/nixos/bluetooth.nix

12 lines
185 B
Nix

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