diff options
author | jdlugosz963 <jdlugosz963@gmail.com> | 2024-10-04 08:50:39 +0200 |
---|---|---|
committer | jdlugosz963 <jdlugosz963@gmail.com> | 2024-10-04 08:50:39 +0200 |
commit | dae7ceec9603208cab6412534aa84b918071606c (patch) | |
tree | 09298121bad80818f8d640bc1bd7fbddf765c132 /files/.bin | |
parent | 432ed8b122ce2ab40e2dacc11144a8835078d66f (diff) | |
download | dotfiles-dae7ceec9603208cab6412534aa84b918071606c.tar.gz dotfiles-dae7ceec9603208cab6412534aa84b918071606c.zip |
Change channels and combine home with system config.
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 | ||