16 lines
210 B
Nix
16 lines
210 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.bluetooth =
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
powerOnBoot = false;
|
|
};
|
|
};
|
|
}
|