summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-12-02 11:53:53 -0500
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-12-02 11:56:58 -0500
commit09dd7f9afc3ff8e907218d78dd92e40875e72159 (patch)
tree589decbf8f3ed445ff5088741fdbc38f854f39b9 /nixos
parent47cb33819d13faedf6f6090ad5b08103597242c8 (diff)
downloadnixlib-09dd7f9afc3ff8e907218d78dd92e40875e72159.tar
nixlib-09dd7f9afc3ff8e907218d78dd92e40875e72159.tar.gz
nixlib-09dd7f9afc3ff8e907218d78dd92e40875e72159.tar.bz2
nixlib-09dd7f9afc3ff8e907218d78dd92e40875e72159.tar.lz
nixlib-09dd7f9afc3ff8e907218d78dd92e40875e72159.tar.xz
nixlib-09dd7f9afc3ff8e907218d78dd92e40875e72159.tar.zst
nixlib-09dd7f9afc3ff8e907218d78dd92e40875e72159.zip
Fix passing of kernel parameters
Broken in 9ee30cd9b51c46cea7193993d006bb4301588001.  Reported by Arvin
Moezzi.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/system/activation/top-level.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/system/activation/top-level.nix b/nixos/modules/system/activation/top-level.nix
index 4146cd8394a5..d9891f434cc8 100644
--- a/nixos/modules/system/activation/top-level.nix
+++ b/nixos/modules/system/activation/top-level.nix
@@ -98,6 +98,7 @@ let
     systemd = config.systemd.package;
 
     inherit children;
+    kernelParams = config.boot.kernelParams;
     installBootLoader =
       config.system.build.installBootLoader
       or "echo 'Warning: do not know how to make this configuration bootable; please enable a boot loader.' 1>&2; true";