1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 11:03:33 +02:00

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

View File

@ -20,4 +20,9 @@
boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") { boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
kernelModules = [ "hp-wmi" ]; 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;
} }