summary refs log tree commit diff
path: root/nixos/modules/system/boot/stage-1.nix
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2022-02-27 14:06:45 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2022-02-27 14:07:31 +0100
commit1077a6e040b445bf3d0854a667a1c03f33aa5c60 (patch)
tree2567b0ed0850075cce63406e6d9a0c013402c194 /nixos/modules/system/boot/stage-1.nix
parente110983ed3c6bb301b9a4266e400e0e1b2ef58dd (diff)
downloadnixpkgs-1077a6e040b445bf3d0854a667a1c03f33aa5c60.tar
nixpkgs-1077a6e040b445bf3d0854a667a1c03f33aa5c60.tar.gz
nixpkgs-1077a6e040b445bf3d0854a667a1c03f33aa5c60.tar.bz2
nixpkgs-1077a6e040b445bf3d0854a667a1c03f33aa5c60.tar.lz
nixpkgs-1077a6e040b445bf3d0854a667a1c03f33aa5c60.tar.xz
nixpkgs-1077a6e040b445bf3d0854a667a1c03f33aa5c60.tar.zst
nixpkgs-1077a6e040b445bf3d0854a667a1c03f33aa5c60.zip
nixos/stage-1: typo fixes
Diffstat (limited to 'nixos/modules/system/boot/stage-1.nix')
-rw-r--r--nixos/modules/system/boot/stage-1.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix
index 5999a993b14..c45857441c6 100644
--- a/nixos/modules/system/boot/stage-1.nix
+++ b/nixos/modules/system/boot/stage-1.nix
@@ -136,11 +136,11 @@ let
       # because `kmod` isn't linked against `libpthread.so.0` anymore (since
       # it was merged into `libc.so.6` since version `2.34`), but still needs
       # to access it for some reason. This is not an issue in stage-1 itself
-      # because of the  `LD_LIBRARY_PATH`-variable and anytime later because the rpath of
+      # because of the `LD_LIBRARY_PATH`-variable and anytime later because the rpath of
       # kmod/modprobe points to glibc's `$out/lib` where `libpthread.so.6` exists.
       # However, this is a problem when the kernel calls `modprobe` inside
       # the initial ramdisk because it doesn't know about the
-      # `LD_LIbRARY_PATH` and the rpath was nuked.
+      # `LD_LIBRARY_PATH` and the rpath was nuked.
       #
       # Also, we can't use `makeWrapper` here because `kmod` only does
       # `modprobe` functionality if `argv[0] == "modprobe"`.