8 lines
174 B
Bash
Executable File
8 lines
174 B
Bash
Executable File
#!/bin/sh
|
|
ARG="$*"
|
|
if [ "$ARG" = "" ]; then
|
|
ARG="boot"
|
|
fi
|
|
|
|
nixos-rebuild "$ARG" --flake .#muffin --target-host root@server-public --build-host root@server-public --verbose
|