summaryrefslogtreecommitdiffstats
path: root/files/.bin/system-reconfigure
blob: dae18f624820c5576960e301a47c38f4a9cd4ffd (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

if [ -n "$1" ]; then
    sudo -E guix system -L $1 reconfigure \
	 -e '((@@ (jd utils) current-operating-system))'
else
    sudo -E guix system reconfigure \
	 -e '((@@ (jd utils) current-operating-system))'
fi;