nixos-old/sync.sh

18 lines
396 B
Bash
Raw Normal View History

2022-10-24 13:01:11 +00:00
#!/bin/sh
2022-10-24 12:35:26 +00:00
2022-10-24 19:14:09 +00:00
# update in case i was fucking around somewhere else
2022-10-24 13:24:49 +00:00
git pull
2022-10-24 19:14:09 +00:00
# format everything to look nice
2022-10-24 13:24:49 +00:00
nixpkgs-fmt *.nix
2022-10-24 19:14:09 +00:00
nixpkgs-fmt ./nvim/*.nix
# make a backup just in case
2022-10-24 13:01:11 +00:00
cp -r /etc/nixos/ ./backup
2022-10-24 19:14:09 +00:00
# copy over all the files to /etc/nixos/
sudo cp -r ./configuration.nix ./nvim/ ./packages.nix ./home.nix /etc/nixos/
# update and build my new config
2022-10-24 12:35:26 +00:00
sudo nixos-rebuild switch --upgrade