Personal dotfiles for Linux, mostly for Nixpkgs/NixOS-based and Termux setups. Mirrored using GitLab's push mirroring feature. gitlab.com/andreijiroh-dev/dotfiles
linux dotfiles
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update post-clone repo bootstrap script for git remotes stuff

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.eu.org>

+7 -2
+7 -2
.config/yadm/bootstrap.d/00-post-clone-repo.sh
··· 1 1 #!/usr/bin/env sh 2 2 3 - echo "Symlinking ~/.git to ~/.local/share/yadm/repo.git for compatibility" 4 - ln -s ~/.local/share/yadm/repo.git ~/.git 3 + if [ ! -d "$HOME/.git" ]; then 4 + echo "Symlinking ~/.git to ~/.local/share/yadm/repo.git for compatibility" 5 + ln -s ~/.local/share/yadm/repo.git ~/.git 6 + fi 7 + 8 + git remote set-url origin ssh://git@mau.dev/andreijiroh.dev/dotfiles 9 + git remote add hut ssh://git@git.sr.ht/~ajhalili2006/dotfiles