diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-03-25 14:28:42 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-03-25 14:28:42 +0100 |
| commit | debd8f6ea8b909dd5ed2e4818e6e2b9afcba6229 (patch) | |
| tree | f9e02dce05a330b83af6b276a53c47a54d4c6573 | |
| parent | bc69d073d0aa753fd1fdbc65fbbc7a13a68e9b6c (diff) | |
fix cryptsetup add boot key
| -rwxr-xr-x | nais | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -81,7 +81,7 @@ install_arch() { pacstrap -K /mnt base linux linux-firmware neovim neomutt wayland wayland-protocols wlroots xorg-xwayland git base-devel networkmanager btrfs-progs sudo dd if=/dev/random of=/mnt/etc/.bootkey bs=1024 count=4 - echo "$PASSWORD" | cryptsetup luksAddKey --key-file - /mnt/etc/.bootkey + echo "$PASSWORD" | cryptsetup luksAddKey --key-file - /dev/mapper/boot /mnt/etc/.bootkey genfstab -U /mnt >> /mnt/etc/fstab |