add new arg to styx

This commit is contained in:
Daylin Morgan 2024-01-23 15:36:31 -06:00
parent c57d02fdb1
commit 159f911d68
Signed by: daylin
GPG Key ID: C1E52E7DD81DF79F
1 changed files with 6 additions and 1 deletions

View File

@ -64,6 +64,11 @@ build() {
esac
}
dry() {
# poor mans nix flake check
nix build "$FLAKE_PATH#nixosConfigurations.$(hostname).config.system.build.toplevel" --dry-run
}
if [[ $# -eq 0 ]]; then
log no command specified see below for help
help
@ -71,7 +76,7 @@ fi
while [[ $# -gt 0 ]]; do
case $1 in
fmt | boot | switch | store | build)
fmt | boot | switch | store | build | dry)
cmd=$1
shift
;;