unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Leo Prikler <leo.prikler@student.tugraz.at>
To: "Ludovic Courtès" <ludo@gnu.org>
Cc: guix-devel@gnu.org
Subject: Re: Collect guix profiles in single directory.
Date: Wed, 08 Jan 2020 14:48:39 +0100	[thread overview]
Message-ID: <34307ca779925da741af20fa57497c8e13eae7d6.camel@student.tugraz.at> (raw)
In-Reply-To: <87blrefavb.fsf@gnu.org>

Hi Ludo,

Am Mittwoch, den 08.01.2020, 12:25 +0100 schrieb Ludovic Courtès:
> Hi Leo,
> 
> Leo Prikler <leo.prikler@student.tugraz.at> skribis:
> 
> > currently, our configuration is (more or less true to XDG)
> > scattered
> > around various places.  Even if one does not make use of more
> > advanced
> > features, one will at least have two profiles:
> > - ~/.config/guix/current
> > - ~/.guix-profile
> > If one does have more configuration data, the channels.scm must be
> > put
> > under ~/$XDG_CONFIG_HOME/guix/.  Note, that this need not be
> > ~/.config/guix, but most likely is.  If one wishes to use more than
> > one
> > profile, so as to keep the build times for each shorter, one has to
> > write custom code and can not rely on /etc/profile.
> > 
> > This is a proposal to change the current approach.  Instead of
> > splitting Guix config in a way that tries to conform to XDG, but
> > does
> > not really, I propose to use a single directory ~/.guix for all
> > configuration.
> > This includes:
> > - ~/.guix/channels.scm
> > - ~/.guix/channels (instead of ~/.guix/current, to match the name
> > channels.scm)
> > - ~/.guix/profile
> > - user-generated profiles
> 
> To me, the most important aspect of your proposal is having all
> profiles
> in one place (Konrad proposed something similar recently, well, “last
> year.”  :-))
> 
> Like I wrote then, ‘guix package --list-profiles’ was an attempt at
> making it easier to locate profiles, even if they’re not in the same
> directory, so that you can easily operate on them.  What Konrad noted
> is
> that this returns all the profiles, including
> ~/.config/guix/current-kind of profiles, which may be inconvenient.
That is certainly a convienient command, although not quite enough for
the purpose I had in mind.  Perhaps list-profiles could be extended
into its own command to allow for more filtering options on the command
line, including stuff like ‘--kind=(channel|package)’, ‘--prefix=DIR’,
and so on.

> I’m generally wary of enforcing arbitrary conventions, such as a
> specific directory to store all profiles, but at the same time I
> agree
> that this can be convenient, so I’m a bit split!
To be more clear, I do not want ~/.guix to be the ONLY directory where
profiles can be stored in.  Perhaps the title and initial post were
somewhat misleading in that regard.
However, I do want ~/.guix to be treated as the directory, where
necessary data is put in (i.e. channels and the default profile) and
where users can add their own profiles to be treated as if they were
the default profile.  
IOW, when looking at the examples of “Guix Profiles in Practice”, I do
not want to have to create ~/.guix-extra-profiles and ~/.guix-extra or
~/.guix-manifests, and neither do I want to set the associated
environment variables.  Rather, I want ~/.guix to serve both purposes.

As an example
--8<---------------cut here---------------start------------->8---
for profile in "$GUIX_EXTRA_PROFILES"/*; do
  guix package --profile="$profile" --manifest="$HOME/.guix-
manifests/guix-$profile-manifest.scm"
done
--8<---------------cut here---------------end--------------->8---
becomes
--8<---------------cut here---------------start------------->8---
for profile in $(guix list-profiles --prefix=$HOME/.guix --
kind=package); do
  guix package --profile="$profile" --manifest="$profile-manifest.scm"
done
--8<---------------cut here---------------end--------------->8---
the latter of which I would personally much prefer.

> Also, such a change would need a transition plan: what does ‘-p’
> become, etc.
Given my above considerations, I would not want to change the behaviour
of ‘-p’.  Perhaps one could add a convenience notation for
$GUIX_PROFILE_DIR/profile, but given that ~/.guix/profile is not too
hard to type, not doing that would probably be the better option.

Regards,

Leo

  reply	other threads:[~2020-01-08 13:48 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-23 10:59 Collect guix profiles in single directory Leo Prikler
2020-01-06 18:55 ` zimoun
2020-01-06 20:07   ` Alex Griffin
2020-01-06 22:52     ` zimoun
2020-01-07 13:02   ` Leo Prikler
2020-01-06 19:41 ` Pierre Neidhardt
2020-01-08 11:25 ` Ludovic Courtès
2020-01-08 13:48   ` Leo Prikler [this message]
2020-01-08 14:16     ` Pierre Neidhardt
2020-01-30 19:28       ` Pierre Neidhardt
2020-01-30 20:08         ` [ SPAM? ] " Leo Prikler
2020-01-31  7:59           ` Pierre Neidhardt
2020-01-31  8:46             ` zimoun
2020-01-31  9:29               ` Leo Prikler
2020-01-31 12:04                 ` Pierre Neidhardt
2020-01-31 12:56                   ` Leo Prikler
2020-01-31 13:36                     ` Pierre Neidhardt
2020-01-31 11:06               ` [ SPAM? ] " Pierre Neidhardt
2020-01-31  9:18             ` Leo Prikler
2020-01-31 13:33               ` Pierre Neidhardt
2020-01-31 14:34                 ` Leo Prikler
2020-01-31 15:17                   ` Pierre Neidhardt
2020-01-31 15:38                     ` Leo Prikler
2020-01-31 15:52                       ` Pierre Neidhardt
2020-01-08 11:44 ` Raghav Gururajan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=34307ca779925da741af20fa57497c8e13eae7d6.camel@student.tugraz.at \
    --to=leo.prikler@student.tugraz.at \
    --cc=guix-devel@gnu.org \
    --cc=ludo@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).