From edc8b324da23b61149b13b1d3e0aecbd980e7370 Mon Sep 17 00:00:00 2001 From: SteveTinkers <79803804+SteveTinkers@users.noreply.github.com> Date: Thu, 18 Nov 2021 19:53:03 -0800 Subject: [PATCH] Moving Snapper Config to bottom to status --- 3-post-setup.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/3-post-setup.sh b/3-post-setup.sh index 8b56b90..d7ca6ba 100755 --- a/3-post-setup.sh +++ b/3-post-setup.sh @@ -25,9 +25,6 @@ sed -i 's/^# %wheel ALL=(ALL) ALL/%wheel ALL=(ALL) ALL/' /etc/sudoers # Cleanup unused packages pacman -Rsc --noconfirm "$(pacman -Qqdt)" -# Enable btrfs snapshots -snapper -c root create-config / - # Enable services systemctl disable dhcpcd.service systemctl stop dhcpcd.service @@ -46,6 +43,9 @@ systemctl enable nmb.service systemctl enable NetworkManager.service systemctl enable NetworkManager-dispatcher.service +# Enable btrfs snapshots +snapper -c root create-config / + # change directory back cd $pwd