16 lines
279 B
Nix
16 lines
279 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: {
|
||
|
# Enable bluetooth
|
||
|
options = {
|
||
|
crony.bluetooth.enable = lib.mkEnableOption "enable bluetooth";
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf config.crony.bluetooth.enable {
|
||
|
hardware.bluetooth.enable = true;
|
||
|
hardware.bluetooth.powerOnBoot = true;
|
||
|
};
|
||
|
}
|