mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-13 02:40:20 +01:00
12 lines
180 B
Bash
Executable file
12 lines
180 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
REMOTE=root@192.168.1.127
|
|
CONFIG=minus
|
|
|
|
nixos-rebuild switch \
|
|
--verbose \
|
|
--fast \
|
|
--use-remote-sudo \
|
|
--flake .#${CONFIG} \
|
|
--target-host $REMOTE "$@"
|
|
|