13 lines
135 B
Bash
Executable File
13 lines
135 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
git pull
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
h="$(hostname -s)"
|
|
else
|
|
h="$1"
|
|
fi
|
|
|
|
nixos-rebuild --flake /etc/nixos#${h} switch
|