13 lines
274 B
Bash
13 lines
274 B
Bash
#!/usr/bin/env bash
|
|
|
|
sudo bash ./install-guix-on-void-root.bash
|
|
|
|
# Profile Initialization
|
|
cat << 'EOF' > ~/.profile
|
|
GUIX_PROFILE="/home/zilti/.config/guix/current"
|
|
. "$GUIX_PROFILE/etc/profile"
|
|
EOF
|
|
|
|
guix pull
|
|
. ~/.profile
|
|
guix home reconfigure ./home/home-configuration.scm
|