about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-10-28 17:24:14 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-10-28 22:45:57 +0100
commit9a8516438e93ec61bc37fc6f2e1125df30df2f4b (patch)
tree35c67f00a5bce895512553c8cc69f6fc07ac3a33 /nixos
parent259f7a93b1e679b73026352b40029375aa94db7c (diff)
downloadnixlib-9a8516438e93ec61bc37fc6f2e1125df30df2f4b.tar
nixlib-9a8516438e93ec61bc37fc6f2e1125df30df2f4b.tar.gz
nixlib-9a8516438e93ec61bc37fc6f2e1125df30df2f4b.tar.bz2
nixlib-9a8516438e93ec61bc37fc6f2e1125df30df2f4b.tar.lz
nixlib-9a8516438e93ec61bc37fc6f2e1125df30df2f4b.tar.xz
nixlib-9a8516438e93ec61bc37fc6f2e1125df30df2f4b.tar.zst
nixlib-9a8516438e93ec61bc37fc6f2e1125df30df2f4b.zip
Fix NixOps evaluation
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/system/boot/loader/grub/grub.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/loader/grub/grub.nix b/nixos/modules/system/boot/loader/grub/grub.nix
index 955235da70fe..31e55b5ef9f3 100644
--- a/nixos/modules/system/boot/loader/grub/grub.nix
+++ b/nixos/modules/system/boot/loader/grub/grub.nix
@@ -236,7 +236,7 @@ in
 
       system.build.installBootLoader =
         if cfg.devices == [] then
-          throw "You must set the ‘boot.loader.grub.device’ option to make the system bootable."
+          throw "You must set the option ‘boot.loader.grub.device’ to make the system bootable."
         else
           "PERL5LIB=${makePerlPath [ pkgs.perlPackages.XMLLibXML pkgs.perlPackages.XMLSAX ]} " +
           "${pkgs.perl}/bin/perl ${./install-grub.pl} ${grubConfig}";