nixos/install-grub: Only check for /nix to be the mountPoint for the store

This commit is contained in:
William A. Kennington III 2014-08-31 17:15:39 -07:00
parent 61908bdd80
commit 9467937639

View file

@ -164,7 +164,8 @@ sub GrubFs {
return Grub->new(path => $path, search => $search);
}
my $grubBoot = GrubFs("/boot");
my $grubStore = GrubFs("/nix/store");
# FIXME: Should be /nix/store, but this fails in the installer
my $grubStore = GrubFs("/nix");
# Generate the header.
my $conf .= "# Automatically generated. DO NOT EDIT THIS FILE!\n";