about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTom Bereknyei <tomberek@gmail.com>2019-08-17 02:08:08 -0400
committerTom Bereknyei <tom@rebelliondefense.com>2020-02-01 20:49:06 -0500
commit53ca456f6013f3c6762943a172ee0d4cc656e26f (patch)
tree76e08958bf95a777b0e6894dd4183545c2b7d19c
parent64afb7c12df56edf5070ddd1e92a21bf5d059fdf (diff)
downloadnixlib-53ca456f6013f3c6762943a172ee0d4cc656e26f.tar
nixlib-53ca456f6013f3c6762943a172ee0d4cc656e26f.tar.gz
nixlib-53ca456f6013f3c6762943a172ee0d4cc656e26f.tar.bz2
nixlib-53ca456f6013f3c6762943a172ee0d4cc656e26f.tar.lz
nixlib-53ca456f6013f3c6762943a172ee0d4cc656e26f.tar.xz
nixlib-53ca456f6013f3c6762943a172ee0d4cc656e26f.tar.zst
nixlib-53ca456f6013f3c6762943a172ee0d4cc656e26f.zip
Suggested fixes
-rw-r--r--dell/xps/15-7590/README.wiki3
-rw-r--r--dell/xps/15-7590/default.nix3
2 files changed, 5 insertions, 1 deletions
diff --git a/dell/xps/15-7590/README.wiki b/dell/xps/15-7590/README.wiki
index b583b19d55d5..7c7458253fa0 100644
--- a/dell/xps/15-7590/README.wiki
+++ b/dell/xps/15-7590/README.wiki
@@ -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.kernelPackages = pkgs.linuxPackages_5_1;
 ```
+Disable the `canTouchEfiVariables` after a boot or two to prevent NVRAM wearout.
+
+
 === After installation ===
 
 * ''Add systemd-boot to UEFI boot list.'' The (uneditable anyways) settings mapping drive UUIDs to HD* work fine.
diff --git a/dell/xps/15-7590/default.nix b/dell/xps/15-7590/default.nix
index 4a9030ab30c9..066637361c22 100644
--- a/dell/xps/15-7590/default.nix
+++ b/dell/xps/15-7590/default.nix
@@ -4,10 +4,11 @@
   imports = [
     ../../../common/cpu/intel
     ../../../common/pc/laptop
+    ../../../common/pc/ssd
   ];
 
   # 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.loader.efi.canTouchEfiVariables = lib.mkDefault true;