blob: fbaec048ed74e841110f97469249b53b8a2b3bb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env bash
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
|