1 2 3 4 5 6 7 8 9
#!/bin/sh if [ -n "$1" ]; then guix home -L $1 reconfigure \ -e '((@ (jd utils) current-home))' else guix home reconfigure \ -e '((@ (jd utils) current-home))' fi;