nixos-old/sync.sh

23 lines
513 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
nixpkgs-fmt ./penrose/*.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 ./user.nix /etc/nixos/
nix-build ./penrose
sudo cp ./penrose/result/bin/penrose-custom /etc/nixos
# update and build my new config
sudo nixos-rebuild switch --upgrade