summaryrefslogtreecommitdiffstats
path: root/files/.bin/home-reconfigure
blob: f55b89697fa4d445142bca8da4dd576a337d0db2 (plain)
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;