nix-config/aspects/bluetooth.nix
2026-02-15 17:02:56 -03:00

16 lines
210 B
Nix

{ ... }:
{
flake.modules.nixos.bluetooth =
{
config,
lib,
pkgs,
...
}:
{
hardware.bluetooth = {
enable = true;
powerOnBoot = false;
};
};
}