summaryrefslogtreecommitdiffstats
path: root/files/.bin
diff options
context:
space:
mode:
authorjdlugosz963 <jdlugosz963@gmail.com>2024-10-04 08:50:39 +0200
committerjdlugosz963 <jdlugosz963@gmail.com>2024-10-04 08:50:39 +0200
commitdae7ceec9603208cab6412534aa84b918071606c (patch)
tree09298121bad80818f8d640bc1bd7fbddf765c132 /files/.bin
parent432ed8b122ce2ab40e2dacc11144a8835078d66f (diff)
downloaddotfiles-dae7ceec9603208cab6412534aa84b918071606c.tar.gz
dotfiles-dae7ceec9603208cab6412534aa84b918071606c.zip
Change channels and combine home with system config.
Diffstat (limited to 'files/.bin')
-rwxr-xr-xfiles/.bin/home-reconfigure4
-rwxr-xr-xfiles/.bin/system-reconfigure4
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
3if [ -n "$1" ]; then 3if [ -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))'
6else 6else
7 guix home reconfigure \ 7 guix home reconfigure \
8 -e '((@@ (jd utils) current-home))' 8 -e '((@ (jd utils) current-home))'
9fi; 9fi;
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
3if [ -n "$1" ]; then 3if [ -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))'
6else 6else
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))'
9fi; 9fi;
10 10