summaryrefslogtreecommitdiffstats
path: root/files/.bin/profile-add-all
diff options
context:
space:
mode:
Diffstat (limited to 'files/.bin/profile-add-all')
-rwxr-xr-xfiles/.bin/profile-add-all9
1 files changed, 9 insertions, 0 deletions
diff --git a/files/.bin/profile-add-all b/files/.bin/profile-add-all
new file mode 100755
index 0000000..bca4178
--- /dev/null
+++ b/files/.bin/profile-add-all
@@ -0,0 +1,9 @@
1#!/bin/sh
2
3GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles
4for i in $HOME/.config/guix/manifests/*; do
5 echo $i
6 MANIFEST_NAME=$(basename $i .scm)
7 mkdir -p "$GUIX_EXTRA_PROFILES"/"$MANIFEST_NAME"
8 guix package --manifest=$i --profile="$GUIX_EXTRA_PROFILES/$MANIFEST_NAME/$MANIFEST_NAME"
9done