mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-08 07:00:28 +01:00
12 lines
257 B
Bash
12 lines
257 B
Bash
#!/bin/sh
|
|
#
|
|
# Save our hardware information with mkinitcpio. This creates
|
|
# an initial ramdisk environment that allows us to boot the
|
|
# Linux kernel.
|
|
#
|
|
# https://wiki.archlinux.org/index.php/Installation_guide
|
|
|
|
set -xe
|
|
|
|
arch-chroot /mnt mkinitcpio -p linux
|