30 lines
988 B
Bash
30 lines
988 B
Bash
#!/bin/bash
|
|
|
|
#Wlan password:
|
|
pw="enter password here"
|
|
#nix-shell -p git
|
|
echo "=================================================="
|
|
echo "replacing config"
|
|
echo "=================================================="
|
|
cd /etc/nixos/
|
|
rm configuration.nix
|
|
git clone https://dev.spittank.org/SchoolDeviceMaintainers/NixConfigLaptops.git
|
|
cp /etc/nixos/NixConfigLaptops/configuration.nix /etc/nixos/
|
|
rm -r /etc/nixos/NixConfigLaptops/
|
|
echo "=================================================="
|
|
read -p "name the device number" number
|
|
sed -i "s/nixoslaptop/nixoslaptop$number/g" configuration.nix
|
|
sed -i "s/xxxYYYxxx/$pw/g" configuration.nix
|
|
echo "=================================================="
|
|
echo "generating config"
|
|
echo "=================================================="
|
|
nixos-rebuild switch
|
|
echo "=================================================="
|
|
while true; do
|
|
read -p "reboot?" yn
|
|
case $yn in
|
|
[Yy]* ) reboot;;
|
|
[Nn]* ) exit;;
|
|
* ) echo "Please answer yes or no";;
|
|
esac
|
|
done
|