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