nixdots/system/shared/hardware/generic.nix
2024-07-27 01:07:07 +02:00

9 lines
475 B
Nix

{lib, ...}: {
# This enables non-free firmware on devices not recognized by `nixos-generate-config`.
# Disabling this option will make the system unbootable if such devices are critical
# in your boot chain - therefore this should remain true until you are running a device
# with mostly libre firmware. Which there is not many of.
# Without this, it defaults to `config.hardware.enableAllFirmware`.
hardware.enableRedistributableFirmware = lib.mkDefault true;
}