blob: bb7e808627dfba8dbef62bafc46621936304a415 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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
nix-index
|