add seahrose to gnome;fix bootloader

This commit is contained in:
teldra 2021-03-12 14:12:27 +01:00
parent 910dcaad07
commit e2aacba67e
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ module start "bootloader" "Install Bootloader"
source "${vars}/disk"
diskid="${cfg[diskid]//-/_}"
if [[ "${cfg[fde_key_store]}" == "initramfs" ]] || [[ "${cfg[fde_key_store]}" == "usb" ]]; then
if [[ ! "${cfg[fde_key_store]}" == "none" ]] && [[ ! "${cfg[fde_key_store]}" == "once" ]]; then
if ! grep -q "GRUB_ENABLE_CRYPTODISK" "${dest}"/etc/default/grub; then
echo "GRUB_ENABLE_CRYPTODISK=y" >> "${dest}"/etc/default/grub
fi

View File

@ -1,7 +1,7 @@
module start "gnome" "Gnome Desktopenvironment Configure"
setconf add "dm" "gdm"
addpkg "${cfg[dm]}" "${modulename}"
addpkg "${cfg[dm]}" "${modulename}" "seahorse"
servicesenable "${cfg[dm]}" dbus
module end