Always enable redistributable firmware

This commit is contained in:
ItsDrike 2024-04-12 22:34:09 +02:00
parent edd9c63596
commit 5514ffb24d
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
2 changed files with 10 additions and 0 deletions

View file

@ -2,5 +2,6 @@ _: {
imports = [
./cpu
./tpm.nix
./generic.nix
];
}

View file

@ -0,0 +1,9 @@
{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;
}