33 lines
880 B
Bash
Executable file
33 lines
880 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
DIR=`realpath "$DIR/../"`
|
|
|
|
CURL="curl -sSfL"
|
|
|
|
if [[ -z $DIR ]]; then
|
|
echo "please set DIR"
|
|
exit 1
|
|
fi
|
|
|
|
DIR=`realpath $DIR`
|
|
echo "using $DIR as the top level directory"
|
|
cd $DIR
|
|
git submodule update --init --recursive
|
|
|
|
|
|
mkdir -p ~/.config/Code/User
|
|
ln -vfs "$DIR/.config/Code/User/settings.json" ~/.config/Code/User/settings.json
|
|
ln -vfs "$DIR/.config/Code/User/keybindings.json" ~/.config/Code/User/keybindings.json
|
|
mkdir -p ~/.local/share/applications
|
|
cp -v "$DIR/keeweb.desktop" ~/.local/share/applications/
|
|
ln -vfs "$DIR/tools" ~/
|
|
echo "all links done"
|
|
|
|
sudo nix-channel --add https://nixos.org/channels/nixos-19.09-small nixos
|
|
nix-channel --add https://github.com/rycee/home-manager/archive/release-19.09.tar.gz home-manager
|
|
nix-channel --update
|
|
nix-shell '<home-manager>' -A install
|
|
|