77633d22ae
My former Manjaro device is now a NixOS device called "socrates", which hosts this git repo and a few other projects.
14 lines
339 B
Bash
Executable file
14 lines
339 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
configs="$BRIEFCASE/configs"
|
|
|
|
case $(hostname) in
|
|
$DESKTOP)
|
|
(cd "$configs/desktop" && stow --target="$HOME" .);;
|
|
$LAPTOP)
|
|
(cd "$configs/work_laptop" && stow --target="$HOME" .);;
|
|
$CLOUDTOP)
|
|
(cd "$configs/cloudtop" && stow --target="$HOME" .);;
|
|
esac
|
|
|
|
(cd "$configs/shared" && stow --target="$HOME" .)
|