mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-06 09:58:47 +08:00
Suggested fixes
This commit is contained in:
committed by
Tom Bereknyei
parent
64afb7c12d
commit
53ca456f60
@@ -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.
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user