7 lines
179 B
Nix
7 lines
179 B
Nix
{ config, lib, ... }:
|
|
{
|
|
config = lib.mkIf config.osbmModules.hardware.bluetooth.enable {
|
|
hardware.bluetooth.enable = true;
|
|
hardware.bluetooth.powerOnBoot = true;
|
|
};
|
|
}
|