diff options
Diffstat (limited to 'files/.bin')
-rwxr-xr-x | files/.bin/home-reconfigure | 8 | ||||
-rwxr-xr-x | files/.bin/system-reconfigure | 9 |
2 files changed, 15 insertions, 2 deletions
diff --git a/files/.bin/home-reconfigure b/files/.bin/home-reconfigure index f3a4e5f..4d16cc0 100755 --- a/files/.bin/home-reconfigure +++ b/files/.bin/home-reconfigure | |||
@@ -1,3 +1,9 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | JD_HOME=1 guix home -L $HOME/dotfiles/guix reconfigure $HOME/dotfiles/guix/jd/desktops/$(hostname).scm | 3 | if [ -n "$1" ]; then |
4 | guix home -L $1 reconfigure \ | ||
5 | -e '((@@ (jd utils) current-home))' | ||
6 | else | ||
7 | guix home reconfigure \ | ||
8 | -e '((@@ (jd utils) current-home))' | ||
9 | fi; | ||
diff --git a/files/.bin/system-reconfigure b/files/.bin/system-reconfigure index c4c1a05..dae18f6 100755 --- a/files/.bin/system-reconfigure +++ b/files/.bin/system-reconfigure | |||
@@ -1,3 +1,10 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | sudo -E guix system -L $HOME/dotfiles/guix reconfigure $HOME/dotfiles/guix/jd/desktops/$(hostname).scm \ No newline at end of file | 3 | if [ -n "$1" ]; then |
4 | sudo -E guix system -L $1 reconfigure \ | ||
5 | -e '((@@ (jd utils) current-operating-system))' | ||
6 | else | ||
7 | sudo -E guix system reconfigure \ | ||
8 | -e '((@@ (jd utils) current-operating-system))' | ||
9 | fi; | ||
10 | |||