dotfiles/scripts/hm-switch.sh

19 lines
529 B
Bash
Raw Normal View History

2022-12-03 00:01:48 +00:00
#!/usr/bin/env sh
# NOTE: Untested on case of no home-manager
set -xv
# Where this script located
SCRIPT_DIR=$(realpath $(dirname $0))
echo "SCRIPT_DIR: ${SCRIPT_DIR}"
HOME_MANAGER_DIR="${SCRIPT_DIR}/../nix-conf/home-manager"
# test if we have home-manager, if not, attempt to use nix to put home-manager to
# our environment
2022-12-08 21:00:53 +00:00
if [ $(home-manager >/dev/null 2>&1) ]; then
2022-12-03 00:01:48 +00:00
nix-shell -p home-manager --run "home-manager switch --flake $HOME_MANAGER_DIR"
else
home-manager switch -b backup --flake "$HOME_MANAGER_DIR"
2022-12-03 00:01:48 +00:00
fi