On Sat, Jan 19, 2013 at 3:11 PM, Aleix Conchillo Flaqué
wrote:
> # groupadd guix-builder
> # for i in `seq 1 10`;
>do
> useradd -g guix-builder -d /var/empty -s `which nologin` \
> -c "Guix build user $i" guix-builder$i;
>
Hi,
just started using guix yesterday by following "info guix". I found a
couple of problems:
1. After adding guix build groupd and users, as suggested:
# groupadd guix-builder
# for i in `seq 1 10`;
do
useradd -g guix-builder -d /var/empty -s `which nologin` \
Hi!
First of all: Nice job!
Let's see if I can help a bit with this, at least trying to report bugs.
First thing I've found is that executing:
guix-package -A
does not end (I haven't wait for a long time).
While
guix-package --list-available
works fine.
Aleix