NixConfigLaptops/nixconf.sh

36 lines
1.2 KiB
Bash
Raw Normal View History

2023-02-24 16:07:11 +01:00
#!/bin/bash
2023-02-10 23:10:24 +01:00
2023-02-12 15:49:57 +01:00
#Wlan password:
2023-02-24 13:49:16 +01:00
#pw="enter password here"
2023-02-24 16:06:55 +01:00
#nix-shell -p git
2023-02-24 15:02:02 +01:00
#echo "=================================================="
#echo "copy configuration"
#cp config.tar.gz /home/
2023-02-24 14:59:04 +01:00
echo "=================================================="
2023-02-12 10:15:11 +01:00
echo "replacing config"
echo "=================================================="
2023-02-10 23:10:24 +01:00
cd /etc/nixos/
rm configuration.nix
2023-02-24 16:06:55 +01:00
#git clone https://dev.spittank.org/SchoolDeviceMaintainers/NixConfigLaptops.git
cp /hone/lokoala/NixConfigLaptops/configuration.nix /etc/nixos/
2023-02-15 18:45:10 +01:00
rm -r /etc/nixos/NixConfigLaptops/
2023-02-12 10:15:11 +01:00
echo "=================================================="
2023-02-24 10:47:00 +01:00
sudo nmcli device wifi connect gy-sedan14-wpa2 password "hier einfügen" hidden yes
echo "=================================================="
2023-02-12 15:49:57 +01:00
read -p "name the device number" number
2023-02-16 17:23:38 +01:00
sed -i "s/nixoslaptop/nixoslaptop$number/g" configuration.nix
2023-02-24 13:36:51 +01:00
#sed -i "s/xxxYYYxxx/$pw/g" configuration.nix
2023-02-12 10:15:11 +01:00
echo "=================================================="
echo "generating config"
echo "=================================================="
2023-02-10 23:10:24 +01:00
nixos-rebuild switch
2023-02-12 10:15:11 +01:00
echo "=================================================="
2023-02-10 23:10:24 +01:00
while true; do
read -p "reboot?" yn
case $yn in
[Yy]* ) reboot;;
[Nn]* ) exit;;
2023-02-12 10:15:11 +01:00
* ) echo "Please answer yes or no";;
2023-02-10 23:10:24 +01:00
esac
done