9 lines
111 B
Bash
Executable File
9 lines
111 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ARG="$*"
|
|
if [ "$ARG" = "" ]; then
|
|
ARG="boot"
|
|
fi
|
|
|
|
nixos-rebuild "$ARG" --flake . --use-remote-sudo
|