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