about summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-05 00:07:40 +0100
committerene <ene@sils.li>2023-02-05 00:07:40 +0100
commiteb6785bd6825f9c01d453b82e9f6d36211342c31 (patch)
treef513b7fbb7d4f97ab962de8b9ec6875a4fc2a147 /system
parentFeat: Reworked the Filesystem configuration (diff)
downloadnixos-config-eb6785bd6825f9c01d453b82e9f6d36211342c31.tar.gz
nixos-config-eb6785bd6825f9c01d453b82e9f6d36211342c31.zip
Fix: This fixes the booting process somehow?
I don't see what's wrong with the compressor, but with it the boot fails
with the message, that the initrd couldn't be uncompressed.
Diffstat (limited to 'system')
-rw-r--r--system/boot/boot.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/boot/boot.nix b/system/boot/boot.nix
index 511c14c5..f978d26a 100644
--- a/system/boot/boot.nix
+++ b/system/boot/boot.nix
@@ -5,9 +5,9 @@
 }: {
   boot = {
     initrd = {
-      compressor = "lz4";
-      compressorArgs = ["-9"];
-      kernelModules = [ "nvme" "btrfs" ];
+      #compressor = "lz4";
+      #compressorArgs = ["-9"];
+      kernelModules = ["nvme" "btrfs"];
     };
 
     kernelPackages = pkgs.linuxPackages_latest;