8 lines
272 B
Bash
Executable File
8 lines
272 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
CONFIG=$1
|
|
OUT_DIR="exported/$CONFIG"
|
|
STORE_PATH=$(nix build .#homeConfigurations."$CONFIG".activationPackage --extra-experimental-features 'nix-command flakes' --no-link --print-out-paths)
|
|
mkdir -p "$OUT_DIR"
|
|
cp -rL "$STORE_PATH/home-files/." "$OUT_DIR/"
|