2024-09-09 00:22:14 +00:00
|
|
|
{
|
2024-09-13 01:50:53 +00:00
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
cfg = config.custom.settings.hardware;
|
|
|
|
in {
|
|
|
|
options.custom.settings.hardware.enable = mkOption {default = false;};
|
2024-09-09 00:22:14 +00:00
|
|
|
|
|
|
|
config.hardware = mkIf cfg.enable {
|
|
|
|
enableAllFirmware = config.custom.default; # Non-free firmware
|
|
|
|
|
|
|
|
# https://wiki.nixos.org/wiki/Bluetooth
|
|
|
|
bluetooth.enable = config.custom.minimal;
|
|
|
|
};
|
|
|
|
}
|