summary refs log tree commit diff
path: root/nixos/modules/system/boot/loader
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-02-13 14:54:30 +0100
committerRobin Gloster <mail@glob.in>2017-02-13 14:55:36 +0100
commitaf9f44dd575bdf6390e14b34b7a652f766b39db0 (patch)
treebf52877e402c0f119282c049824dbf97f3916658 /nixos/modules/system/boot/loader
parent1b02439b61f23b3c2b8f9da4c549dc28c84bab5d (diff)
downloadnixlib-af9f44dd575bdf6390e14b34b7a652f766b39db0.tar
nixlib-af9f44dd575bdf6390e14b34b7a652f766b39db0.tar.gz
nixlib-af9f44dd575bdf6390e14b34b7a652f766b39db0.tar.bz2
nixlib-af9f44dd575bdf6390e14b34b7a652f766b39db0.tar.lz
nixlib-af9f44dd575bdf6390e14b34b7a652f766b39db0.tar.xz
nixlib-af9f44dd575bdf6390e14b34b7a652f766b39db0.tar.zst
nixlib-af9f44dd575bdf6390e14b34b7a652f766b39db0.zip
grub: fix capitalisation
Missed this occurence while renaming the option
Diffstat (limited to 'nixos/modules/system/boot/loader')
-rw-r--r--nixos/modules/system/boot/loader/grub/install-grub.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/loader/grub/install-grub.pl b/nixos/modules/system/boot/loader/grub/install-grub.pl
index 74eb32d1fc13..c9a51288747b 100644
--- a/nixos/modules/system/boot/loader/grub/install-grub.pl
+++ b/nixos/modules/system/boot/loader/grub/install-grub.pl
@@ -430,7 +430,7 @@ my $tmpFile = $confFile . ".tmp";
 writeFile($tmpFile, $conf);
 
 # Append entries detected by os-prober
-if (get("useOsprober") eq "true") {
+if (get("useOSProber") eq "true") {
     system(get("shell"), "-c", "pkgdatadir=$grub/share/grub $grub/etc/grub.d/30_os-prober >> $tmpFile");
 }