Added enableAllFirmware and required allowUnfree

This commit is contained in:
Milo Oien-Rochat 2024-04-25 07:01:16 -05:00 committed by Mic92
parent 97a80738c5
commit fc5c70f78b
1 changed files with 5 additions and 0 deletions

View File

@ -20,4 +20,9 @@
boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
kernelModules = [ "hp-wmi" ];
};
# reduces warnings/errors in boot log, seems to eliminate the ocassional boot hangs described in readme
hardware.enableAllFirmware = lib.mkDefault true;
# required for enableAllFirmware
nixpkgs.config.allowUnfree = lib.mkDefault true;
}