mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-11 09:21:20 +01:00
12 lines
257 B
Plaintext
12 lines
257 B
Plaintext
|
#!/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
|