Remove uses of mkFixStrictness

mkFixStrictness is no longer needed, woohoo!
This commit is contained in:
Eelco Dolstra
2013-10-28 22:45:55 +01:00
parent 0e333688ce
commit 4b1a9dd00b
4 changed files with 5 additions and 4 deletions
@@ -23,7 +23,7 @@ in
config = mkIf config.boot.loader.grub.memtest86 {
boot.loader.grub.extraEntries = mkFixStrictness (
boot.loader.grub.extraEntries =
if config.boot.loader.grub.version == 2 then
''
menuentry "Memtest86+" {
@@ -31,7 +31,7 @@ in
}
''
else
throw "Memtest86+ is not supported with GRUB 1.");
throw "Memtest86+ is not supported with GRUB 1.";
boot.loader.grub.extraFiles."memtest.bin" = "${memtest86}/memtest.bin";