diff options
Diffstat (limited to 'files/.bin')
-rwxr-xr-x | files/.bin/home-reconfigure | 4 | ||||
-rwxr-xr-x | files/.bin/system-reconfigure | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/files/.bin/home-reconfigure b/files/.bin/home-reconfigure index 4d16cc0..f55b896 100755 --- a/files/.bin/home-reconfigure +++ b/files/.bin/home-reconfigure | |||
@@ -2,8 +2,8 @@ | |||
2 | 2 | ||
3 | if [ -n "$1" ]; then | 3 | if [ -n "$1" ]; then |
4 | guix home -L $1 reconfigure \ | 4 | guix home -L $1 reconfigure \ |
5 | -e '((@@ (jd utils) current-home))' | 5 | -e '((@ (jd utils) current-home))' |
6 | else | 6 | else |
7 | guix home reconfigure \ | 7 | guix home reconfigure \ |
8 | -e '((@@ (jd utils) current-home))' | 8 | -e '((@ (jd utils) current-home))' |
9 | fi; | 9 | fi; |
diff --git a/files/.bin/system-reconfigure b/files/.bin/system-reconfigure index dae18f6..e76ba27 100755 --- a/files/.bin/system-reconfigure +++ b/files/.bin/system-reconfigure | |||
@@ -2,9 +2,9 @@ | |||
2 | 2 | ||
3 | if [ -n "$1" ]; then | 3 | if [ -n "$1" ]; then |
4 | sudo -E guix system -L $1 reconfigure \ | 4 | sudo -E guix system -L $1 reconfigure \ |
5 | -e '((@@ (jd utils) current-operating-system))' | 5 | -e '((@ (jd utils) current-operating-system))' |
6 | else | 6 | else |
7 | sudo -E guix system reconfigure \ | 7 | sudo -E guix system reconfigure \ |
8 | -e '((@@ (jd utils) current-operating-system))' | 8 | -e '((@ (jd utils) current-operating-system))' |
9 | fi; | 9 | fi; |
10 | 10 | ||