$ sudo su
$ bootctl install
$ cat <<EOF>/boot/loader/loader.conf
#https://wiki.archlinux.org/index.php/Systemd-boot#Configuration
# menu timeout
timeout 3
# defaut kernel to boot
default arch
# activate boot entry editor (press `e` in menu)
editor 1
EOF
$ cat <<EOF>/boot/loader/entries/arch.conf
title Arch Linux
linux /vmlinuz-linux
initrd /intel-ucode.img
initrd /initramfs-linux.img
options root=UUID=<uuid-of-root-partition> rd.luks.uuid=<uuid-of-luks-partition>
EOF
$ pacman -Rcsnu grub
$ <aur-wrapper> -S systemd-boot-pacman-hook
Configuration of systemd-boot is sooo much nicer than those of GRUB.
Double check your Kernel params (you can copy them 1-to-1 from /etc/default/grub
) and reboot!