16 lines
355 B
Bash
16 lines
355 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
|
|
|
|
mkdir -p ~/.config/guix
|
|
ln -s ~/.local/channels.scm ~/.config/guix/channels.scm
|
|
|
|
guix pull
|
|
. ~/.profile
|
|
guix home reconfigure ./home/home-configuration.scm
|