mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-29 11:44:45 +01:00
13 lines
249 B
Bash
13 lines
249 B
Bash
#!/bin/sh
|
|
#
|
|
# Install grub to the primary partition. Then, make the
|
|
# configuration file for grub.
|
|
#
|
|
# https://wiki.archlinux.org/index.php/Grub
|
|
|
|
set -xe
|
|
|
|
arch-chroot /mnt grub-install /dev/sda
|
|
|
|
arch-chroot /mnt grub-mkconfig -o /boot/grub/grub.cfg
|