8 lines
132 B
Nix
8 lines
132 B
Nix
{ config, lib, pkgs, ...}:
|
|
{
|
|
hardware.bluetooth = {
|
|
enable = lib.mkDefault true;
|
|
powerOnBoot = lib.mkDefault true;
|
|
};
|
|
}
|