From e72d011ddff3da64f76dc70789603a033efdf74c Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Fri, 13 Mar 2020 21:22:30 -0400 Subject: guix: break down monolithic profile into multiple smaller profiles super useful for decoupling larger packages like icecat, libreoffice, and texlive from the rest of mostly-smaller packages, so i could easily `guix pull' and update the smaller ones as frequently as i like --- .profile | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to '.profile') diff --git a/.profile b/.profile index b419e55..7b287dc 100644 --- a/.profile +++ b/.profile @@ -20,6 +20,9 @@ fi export PATH export INFOPATH +export MY_GUIX_MANIFESTS="$HOME/.config/guix/manifest" +export MY_GUIX_PROFILES="$HOME/.config/guix/profile" + export XDG_CONFIG_HOME="$HOME/.config" export XDG_DATA_HOME="$HOME/.local/share" @@ -60,6 +63,15 @@ if [ -z "$IS_GUIX_SYSTEM" ]; then fi fi +for p in $MY_GUIX_PROFILES/*; do + profile=$p/$(basename "$p") + if [ -f "$profile"/etc/profile ]; then + GUIX_PROFILE="$profile" + . "$GUIX_PROFILE"/etc/profile + fi + unset profile +done + # start an ssh-agent (with guix's openssh) if [ -z "$IS_GUIX_SYSTEM" ]; then if ! pgrep -u "$USER" ssh-agent > /dev/null; then -- cgit v1.2.3-60-g2f50