summary refs log tree commit diff
path: root/nixos/modules/system
diff options
context:
space:
mode:
authorAlexander Kjeldaas <ak@formalprivacy.com>2014-04-13 22:15:04 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-12-28 13:45:27 +0100
commitda1f8578b063b7fa84e1b4dabe89b16399785074 (patch)
tree0cc76f4f32dc7646125ad32c7ec8b12caf7ca503 /nixos/modules/system
parent40397be73769b1fe7b4a810eeaadd7f6efac54f1 (diff)
downloadnixlib-da1f8578b063b7fa84e1b4dabe89b16399785074.tar
nixlib-da1f8578b063b7fa84e1b4dabe89b16399785074.tar.gz
nixlib-da1f8578b063b7fa84e1b4dabe89b16399785074.tar.bz2
nixlib-da1f8578b063b7fa84e1b4dabe89b16399785074.tar.lz
nixlib-da1f8578b063b7fa84e1b4dabe89b16399785074.tar.xz
nixlib-da1f8578b063b7fa84e1b4dabe89b16399785074.tar.zst
nixlib-da1f8578b063b7fa84e1b4dabe89b16399785074.zip
Eradicate gzip -9 without -n
Diffstat (limited to 'nixos/modules/system')
-rw-r--r--nixos/modules/system/boot/stage-1.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix
index cd30ce1b7cef..f0d8b04d0875 100644
--- a/nixos/modules/system/boot/stage-1.nix
+++ b/nixos/modules/system/boot/stage-1.nix
@@ -326,7 +326,7 @@ in
 
     boot.initrd.compressor = mkOption {
       internal = true;
-      default = "gzip -9";
+      default = "gzip -9n";
       type = types.str;
       description = "The compressor to use on the initrd image.";
       example = "xz";