From 786cfa988f1cd3bb3ae35d0e9fa4199abe647b90 Mon Sep 17 00:00:00 2001 From: min Date: Mon, 30 Dec 2024 23:19:50 -0500 Subject: [PATCH] fix --- scripts/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 6976bd7..897667c 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -66,13 +66,13 @@ disko \ --root-mountpoint $ROOT_MNT # copy extra files into mountpoint -cp -r "$temp" "$ROOT_MNT/" +cp -ar "$temp/." "$ROOT_MNT/" # run nixos-install nixos-install \ --no-channel-copy \ --no-root-password \ - --root "$ROOTMNT" \ + --root "$ROOT_MNT" \ --flake .#$NAME echo -e "Finished install.\n" \