blob: 192e5d23544c6a3ef2af614cd6ad0a25204ebb87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env bash
set -euo pipefail
echo "Inserting files..."
sudo cp -r Wallpapers ~/Pictures
find . -type f -name "*.sh" -print -exec chmod +x {} \;
echo "Rebuilding..."
sudo nixos-generate-config --show-hardware-config > hardware-configuration.nix
sudo nixos-rebuild switch --flake .#main
strfile ~/.config/fortune/showerthoughts
|