about summary refs log tree commit diff stats
path: root/bootstrap/config_setup
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-25 08:51:54 +0100
committerene <ene@sils.li>2023-02-25 08:51:54 +0100
commit304664a405aade8edf129a06d89cea0f89a61e23 (patch)
tree78f2ed1a1b647986442f2f707ce27d9eeea98e24 /bootstrap/config_setup
parentFix(impermance): Remove uncertain setting (diff)
downloadnixos-config-304664a405aade8edf129a06d89cea0f89a61e23.tar.gz
nixos-config-304664a405aade8edf129a06d89cea0f89a61e23.zip
Fix(bootstrap): Make the path based on the /mnt root
Diffstat (limited to 'bootstrap/config_setup')
-rwxr-xr-xbootstrap/config_setup/config_setup.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/config_setup/config_setup.sh b/bootstrap/config_setup/config_setup.sh
index 92e91187..c856c517 100755
--- a/bootstrap/config_setup/config_setup.sh
+++ b/bootstrap/config_setup/config_setup.sh
@@ -6,8 +6,8 @@ export LIB_TEMP_DIR_FOR_SCRIPT="$(mktemp -d)"
 
 
 # clone packer.nvim to the needed dir, for the nvim install to work
-git clone --depth 1 https://github.com/wbthomason/packer.nvim ~/.local/share/nvim/site/pack/packer/start/packer.nvim
+git clone --depth 1 https://github.com/wbthomason/packer.nvim /mnt/srv/home/soispha/.local/share/nvim/site/pack/packer/start/packer.nvim
 
-nvim -c 'PackerSync' -c 'qall' -u '/mnt/soispha/.config/nvim/init.lua' --headless
+nvim -c 'PackerSync' -c 'qall' -u '/mnt/srv/home/soispha/.config/nvim/init.lua' --headless
 
 if [ -d "$LIB_TEMP_DIR_FOR_SCRIPT" ];then rm -r "$LIB_TEMP_DIR_FOR_SCRIPT"; fi