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