diff options
author | ene <ene@sils.li> | 2023-02-05 00:07:40 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-05 00:07:40 +0100 |
commit | eb6785bd6825f9c01d453b82e9f6d36211342c31 (patch) | |
tree | f513b7fbb7d4f97ab962de8b9ec6875a4fc2a147 /system | |
parent | Feat: Reworked the Filesystem configuration (diff) | |
download | nixos-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.nix | 6 |
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; |