Update init script

This commit is contained in:
Daniel Flanagan 2020-11-06 00:50:13 -06:00
parent bb723cf2e0
commit 7c56875b53
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4

View file

@ -1,6 +1,9 @@
#!/usr/bin/env sh #!/usr/bin/env sh
# NOTE: run this from inside a NixOS installation, not from the live USB/CD set -e
# NOTE: run this from inside a Linux installation, not from the live USB/CD
# TODO: detect OS and perform OS-specific setup
root_home="/root" root_home="/root"
daniel_home="/home/daniel/.home" daniel_home="/home/daniel/.home"
@ -13,9 +16,11 @@ add_unstable_channel() {
} }
clone_dotfiles() { clone_dotfiles() {
echo "Setting up dotfiles for root..." echo "Setting up dotfiles for $USER..."
mkdir --parents "$1" mkdir --parents "$1"
git clone "https://git.lyte.dev/lytedev/dotfiles" "$1" set +e
git clone "https://git.lyte.dev/lytedev/dotfiles" "$1" &>/dev/null
set -e
} }
symlink_nixos() { symlink_nixos() {
@ -34,10 +39,12 @@ setup_wallpaper() {
generate_ssh_key() { generate_ssh_key() {
mkdir --mode 600 --parents "$daniel_home/.ssh" mkdir --mode 600 --parents "$daniel_home/.ssh"
keyfile="$daniel_home/.ssh/$(hostname --short)" keyfile="$daniel_home/.ssh/$(hostname --short)"
if ! [ -f "$keyfile" ]; then
ssh-keygen -N '' -t ed25519 -f "$keyfile" ssh-keygen -N '' -t ed25519 -f "$keyfile"
mkdir --mode 640 --parents "$nice_home/public" mkdir --mode 640 --parents "$nice_home/public"
cp "$keyfile.pub" "$nice_home/public" cp "$keyfile.pub" "$nice_home/public"
ssh-add "$keyfile" ssh-add "$keyfile"
fi
} }
fix_dotfiles_origin() { fix_dotfiles_origin() {
@ -64,7 +71,8 @@ init_for_root() {
init_for_daniel() { init_for_daniel() {
clone_dotfiles "$daniel_home$dotfiles" clone_dotfiles "$daniel_home$dotfiles"
generate_ssh_key generate_ssh_key
symlink_nixos "$daniel_home$dotfiles/env/nix/" FUNC=$(declare -f symlink_nixos)
sudo sh -c "$FUNC; symlink_nixos \"$daniel_home$dotfiles/env/nix/\""
setup_wallpaper setup_wallpaper
# TODO: setup ssh/gpg keys # TODO: setup ssh/gpg keys
# TODO: setup password store # TODO: setup password store
@ -86,4 +94,4 @@ echo "Don't forget to setup GPG keys by importing from an existing machine"
echo "or adding new child keys!" echo "or adding new child keys!"
echo echo
echo "The simplest method for doing this is to run the following:" echo "The simplest method for doing this is to run the following:"
echo ' scp -r "$TARGET_MACHINE:~/.gnupg" "$HOME/.gnupg" echo ' scp -r "$TARGET_MACHINE:~/.gnupg" "$HOME/.gnupg'