20 lines
413 B
Bash
20 lines
413 B
Bash
#!/bin/bash
|
|
|
|
echo "replacing config"
|
|
cd /etc/nixos/
|
|
rm configuration.nix
|
|
git clone https://dev.spittank.org/MK/NixConfig/src/branch/main/configuration.nix.git
|
|
#read -p "name the device number" number
|
|
#echo "$number" >> configuration.nix
|
|
echo "generating config"
|
|
nixos-rebuild switch
|
|
while true; do
|
|
read -p "reboot?" yn
|
|
case $yn in
|
|
[Yy]* ) reboot;;
|
|
[Nn]* ) exit;;
|
|
* ) echo "Please answer yes or no";;
|
|
esac
|
|
done
|
|
|
|
|