about summary refs log tree commit diff
path: root/nixos/modules/system/boot
diff options
context:
space:
mode:
authorNicole Angel <nikki@mailbox.org>2015-12-10 19:52:08 +0100
committerNicole Angel <nikki@mailbox.org>2015-12-10 19:52:08 +0100
commitc840974c2466288b49e5ad73599f497e6465ffd4 (patch)
tree324ff3d1c5eb64e3544b8f6b7375c8d2fff5866b /nixos/modules/system/boot
parent3f842516a176a8e39cbf3d1f9219a7f9e3c62dd6 (diff)
downloadnixlib-c840974c2466288b49e5ad73599f497e6465ffd4.tar
nixlib-c840974c2466288b49e5ad73599f497e6465ffd4.tar.gz
nixlib-c840974c2466288b49e5ad73599f497e6465ffd4.tar.bz2
nixlib-c840974c2466288b49e5ad73599f497e6465ffd4.tar.lz
nixlib-c840974c2466288b49e5ad73599f497e6465ffd4.tar.xz
nixlib-c840974c2466288b49e5ad73599f497e6465ffd4.tar.zst
nixlib-c840974c2466288b49e5ad73599f497e6465ffd4.zip
grub: fix typo in variable name (trivial)
Diffstat (limited to 'nixos/modules/system/boot')
-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 5f09e937537f..87dbbd7cd51f 100644
--- a/nixos/modules/system/boot/loader/grub/grub.nix
+++ b/nixos/modules/system/boot/loader/grub/grub.nix
@@ -470,7 +470,7 @@ in
       ] ++ flip concatMap cfg.mirroredBoots (args: [
         {
           assertion = args.devices != [ ];
-          message = "A boot path cannot have an empty devices string in ${arg.path}";
+          message = "A boot path cannot have an empty devices string in ${args.path}";
         }
         {
           assertion = hasPrefix "/" args.path;