blob: 4d16cc05a1937e612d12644ea8225ae5ee7c0a99 (
about) (
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;
|