config/switch

13 lines
309 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-07-05 20:33:02 -07:00
if [ "$(uname -o)" = "darwin" ]; then
nh_subcommand="darwin"
fallback_command="nix run .#darwin-rebuild"
fi
if command -v nh >/dev/null; then
nh $nh_subcommand switch .
2025-05-07 10:22:05 -07:00
else
2025-07-05 20:33:02 -07:00
$fallback_command -- switch --flake .
2025-05-07 10:22:05 -07:00
fi