aboutsummaryrefslogtreecommitdiff
path: root/aux/guix
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-06-11 23:55:44 -0300
committerEuAndreh <eu@euandre.org>2021-06-11 23:55:44 -0300
commit2be10d5b2df987131497c1d9fd7f93df4c6d827e (patch)
tree09c50d69f942c1385dcd459690f5a8849793ee31 /aux/guix
parentTODOs.md: Add #task-39e71afe-4ac9-4c3d-97e4-9ac41f826089 (diff)
downloadgistatic-2be10d5b2df987131497c1d9fd7f93df4c6d827e.tar.gz
gistatic-2be10d5b2df987131497c1d9fd7f93df4c6d827e.tar.xz
aux/: Update files
Diffstat (limited to '')
-rw-r--r--aux/guix/pinned-channels.scm2
-rwxr-xr-xaux/guix/with-container.sh12
2 files changed, 7 insertions, 7 deletions
diff --git a/aux/guix/pinned-channels.scm b/aux/guix/pinned-channels.scm
index b026813..504406f 100644
--- a/aux/guix/pinned-channels.scm
+++ b/aux/guix/pinned-channels.scm
@@ -1,7 +1,7 @@
(cons*
(channel
(name 'xyz-euandreh)
- (url "git://git.euandreh.xyz/package-repository")
+ (url "git://euandreh.xyz/package-repository")
(branch "main")
(introduction
(make-channel-introduction
diff --git a/aux/guix/with-container.sh b/aux/guix/with-container.sh
index 13b6cd3..b521c82 100755
--- a/aux/guix/with-container.sh
+++ b/aux/guix/with-container.sh
@@ -2,12 +2,12 @@
set -eux
if [ -z "${1:-}" ]; then
- guix time-machine --fallback -C aux/guix/pinned-channels.scm -- \
- environment --fallback -m aux/guix/manifest.scm
+ guix time-machine --fallback -C aux/guix/pinned-channels.scm -- \
+ environment --fallback -m aux/guix/manifest.scm
elif [ "$1" = '-p' ]; then
- guix time-machine --fallback -C aux/guix/pinned-channels.scm -- \
- environment --fallback -m aux/guix/manifest.scm --pure -C
+ guix time-machine --fallback -C aux/guix/pinned-channels.scm -- \
+ environment --fallback -m aux/guix/manifest.scm --pure -C
else
- guix time-machine --fallback -C aux/guix/pinned-channels.scm -- \
- environment --fallback -m aux/guix/manifest.scm --pure -C -- sh -c "$@"
+ guix time-machine --fallback -C aux/guix/pinned-channels.scm -- \
+ environment --fallback -m aux/guix/manifest.scm --pure -C -- sh -c "$@"
fi