From bade0fb6b892761d8f8fddc0f87091798f346965 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 16 Jul 2023 22:21:01 -0600 Subject: [PATCH] fix --- debian.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/debian.sh b/debian.sh index e398188..e0eb00b 100755 --- a/debian.sh +++ b/debian.sh @@ -39,7 +39,7 @@ ROOT_PASSWORD="123456" WIRELESS_PASSWORD='123456' SSID='wifi' WIRELESS_INTERFACE='wlan0' -DISK_PASSWORD='REM&rap234' +DISK_PASSWORD='123456' COMPRESSION='compress=zstd:10' AUTO_DECRYPT='True' FLATPAKS+=(io.exodus.Exodus com.nextcloud.desktopclient.nextcloud com.tutanota.Tutanota) @@ -401,6 +401,7 @@ btrfs_filesytem() { btrfs sub create $TARGET/@home btrfs sub create $TARGET/@root btrfs sub create $TARGET/@containers + btrfs sub create $TARGET/@flatpak echo echo "Binding BTRFS Root" echo @@ -508,6 +509,7 @@ fstab() { echo "/dev/mapper/$ROOT_MAPPER_NAME / btrfs noatime,nodiratime,autodefrag,$COMPRESSION,subvol=@$ROOT_NAME 0 1" >>$TARGET/etc/fstab echo "/dev/mapper/$ROOT_MAPPER_NAME /.snapshots btrfs noatime,nodiratime,autodefrag,$COMPRESSION,subvol=@.snapshots 0 1" >>$TARGET/etc/fstab echo "/dev/mapper/$ROOT_MAPPER_NAME /var/lib/libvirt btrfs noatime,nodiratime,autodefrag,$COMPRESSION,subvol=@libvirt 0 1" >>$TARGET/etc/fstab + echo "/dev/mapper/$ROOT_MAPPER_NAME /var/lib/flatpak btrfs noatime,nodiratime,autodefrag,$COMPRESSION,subvol=@flatpak 0 1" >>$TARGET/etc/fstab echo "tmpfs /var/log tmpfs defaults,dev,exec 0 0" >>$TARGET/etc/fstab echo "tmpfs /tmp tmpfs defaults 0 0" >>$TARGET/etc/fstab echo "tmpfs /home/${USER}/.cache tmpfs rw,user,exec 0 0" >>$TARGET/etc/fstab @@ -515,7 +517,7 @@ fstab() { echo "/dev/mapper/$ROOT_MAPPER_NAME /home btrfs noatime,nodiratime,autodefrag,$COMPRESSION,subvol=@home 0 1" >>$TARGET/etc/fstab echo "/dev/mapper/$ROOT_MAPPER_NAME /root btrfs noatime,nodiratime,autodefrag,$COMPRESSION,subvol=@root 0 1" >>$TARGET/etc/fstab echo "/dev/mapper/$ROOT_MAPPER_NAME /var/lib/containers btrfs noatime,nodiratime,autodefrag,$COMPRESSION,subvol=@containers 0 1" >>$TARGET/etc/fstab - echo "/dev/mapper/$SWAP none swap 0 0" >>$TARGET/etc/fstab + echo "$SWAP none swap 0 0" >>$TARGET/etc/fstab } accounts() {