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

Suggested fixes

This commit is contained in:
Tom Bereknyei 2019-08-17 02:08:08 -04:00 committed by Tom Bereknyei
parent 64afb7c12d
commit 53ca456f60
2 changed files with 5 additions and 1 deletions

View File

@ -37,6 +37,9 @@ Update: The 48.ucode causes the Killer wifi card to crash. The iwlfwifi-cc-a0-46
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_5_1; boot.kernelPackages = pkgs.linuxPackages_5_1;
``` ```
Disable the `canTouchEfiVariables` after a boot or two to prevent NVRAM wearout.
=== After installation === === After installation ===
* ''Add systemd-boot to UEFI boot list.'' The (uneditable anyways) settings mapping drive UUIDs to HD* work fine. * ''Add systemd-boot to UEFI boot list.'' The (uneditable anyways) settings mapping drive UUIDs to HD* work fine.

View File

@ -4,10 +4,11 @@
imports = [ imports = [
../../../common/cpu/intel ../../../common/cpu/intel
../../../common/pc/laptop ../../../common/pc/laptop
../../../common/pc/ssd
]; ];
# TODO: boot loader # TODO: boot loader
boot.loader.systemd-boot.enable = lib.mkDefault true; #boot.loader.systemd-boot.enable = lib.mkDefault true;
boot.kernelPackages = pkgs.linuxPackages_5_1; boot.kernelPackages = pkgs.linuxPackages_5_1;
boot.loader.efi.canTouchEfiVariables = lib.mkDefault true; boot.loader.efi.canTouchEfiVariables = lib.mkDefault true;