6 lines
112 B
Bash
Executable file
6 lines
112 B
Bash
Executable file
#!/bin/sh
|
|
currentdir=$(pwd)
|
|
cd /conf
|
|
nixos-rebuild --use-remote-sudo switch --verbose --flake .#
|
|
cd $currentdir
|