nixdots/system/shared/hardware/generic.nix

9 lines
475 B
Nix
Raw Normal View History

2024-04-12 20:34:09 +00:00
{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;
}