config/switch

17 lines
376 B
Text
Raw Permalink Normal View History

2025-05-07 10:22:05 -07:00
#!/bin/sh
nh_subcommand="os"
fallback_command="nixos-rebuild"
2025-08-31 18:49:59 -07:00
hostname=""
if [ -n "$1" ]; then
hostname="#$1"
fi
2025-07-05 20:33:02 -07:00
if [ "$(uname -o)" = "darwin" ]; then
nh_subcommand="darwin"
2025-08-31 18:49:59 -07:00
fallback_command="nix run .#darwin-rebuild --"
2025-07-05 20:33:02 -07:00
fi
if command -v nh >/dev/null; then
nh $nh_subcommand switch .
2025-05-07 10:22:05 -07:00
else
2025-08-31 18:49:59 -07:00
$fallback_command switch --flake '.'"${hostname}"
2025-05-07 10:22:05 -07:00
fi