nixfiles/switch
2024-01-08 07:51:19 +03:00

26 lines
No EOL
347 B
Bash
Executable file

#!/usr/bin/env bash
args=""
cmd="switch"
if [ "$1" == "debug" ]; then
args="--show-trace -v -L"
shift
fi
if [ "$1" == "build" ]; then
cmd="build"
shift
fi
if [ "$1" == "dry-activate" ]; then
cmd="dry-activate"
shift
fi
if [ "$1" == "boot" ]; then
cmd="boot"
shift
fi
sudo nixos-rebuild $cmd --flake . $args $@