nixos-old/sync.sh

18 lines
396 B
Bash
Executable File

#!/bin/sh
# update in case i was fucking around somewhere else
git pull
# format everything to look nice
nixpkgs-fmt *.nix
nixpkgs-fmt ./nvim/*.nix
# make a backup just in case
cp -r /etc/nixos/ ./backup
# 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
sudo nixos-rebuild switch --upgrade