all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#22981: guix-edit does not find git checkout directory
@ 2016-03-10 21:56 myglc2
  2016-03-11 11:03 ` Alex Kost
  0 siblings, 1 reply; 11+ messages in thread
From: myglc2 @ 2016-03-10 21:56 UTC (permalink / raw)
  To: 22981

[-- Attachment #1: Type: text/plain, Size: 2222 bytes --]


Situation: GuixSD sysetm managaed by user glc using a git checkout in
/home/glc/sre/guix.

Problem: When I follow the manual to set up a vanila user (glc5) with a
separate git checkout in /home/glc5/src/guix, guix-edit does not find
the checkout source.

Note: I followed comments from the #guix irc channel to set links in glc
and root that point to the glc checkout:

glc@g1 ~/src/guix [env]$ stat ~/.config/guix/latest
  File: ‘/home/glc/.config/guix/latest’ -> ‘../../src/guix’

glc@g1 ~/src/guix [env]$ stat /root/.config/guix/latest
  File: ‘/root/.config/guix/latest’ -> ‘/home/glc/src/guix’


CREATE USER glc5
================

glc@g1 ~/src/guix$ guix environment guix
glc@g1 ~/src/guix [env]$ ./bootstrap
glc@g1 ~/src/guix [env]$ ./configure --localstatedir=/var && make

glc@g1 ~/src/guix [env]$ git branch -v
* master ff22f01 gnu: dropbear: Update to 2016.72 [fixes CVE-2016-3116].

glc@g1 ~/src/guix [env]$ which guix
/run/current-system/profile/bin/guix

glc@g1 ~/src/guix [env]$ stat /run/current-system/profile/bin/guix
  File: ‘/run/current-system/profile/bin/guix’ ->
  ‘/gnu/store/3lg5c1nidbj0kjdz5b63hn3vp29kzf0s-guix-0.9.0.c3f29bc/bin/guix’

glc@g1 ~/src/guix [env]$ sudo guix system reconfigure ../configs/c05system.scm

USER glc5 test
==============

glc5@g1 ~/src$ which guix
/run/current-system/profile/bin/guix

glc5@g1 ~/src$ stat /run/current-system/profile/bin/guix File:
  ‘/run/current-system/profile/bin/guix’ ->
  ‘/gnu/store/3lg5c1nidbj0kjdz5b63hn3vp29kzf0s-guix-0.9.0.c3f29bc/bin/guix’

glc5@g1 ~/src$ stat ~/.config/guix/latest
stat: cannot stat ‘/home/glc5/.config/guix/latest’: No such file or directory

## set up glc5's environment
glc5@g1 ~/src$ guix package -m glc5.scm 

## customize emacs following "8.3 The Perfect Setup"

glc5@g1 ~/src$ cat ~/.emacs.d/init.el | head -n4
;; from "8.3 The Perfect Setup"
;; Assuming the Guix checkout is in ~/src/guix.
(with-eval-after-load 'geiser-guile
  (add-to-list 'geiser-guile-load-path "~/src/guix"))

## clone guix
glc5@g1 ~/src$ git clone t://git.savannah.gnu.org/guix.git

### run emacs
emacs

M-x guix-edit screen

Problem: This finds read-only screen.src in store rather than in ~/src/guix/...


[-- Attachment #2: c05system.scm --]
[-- Type: application/octet-stream, Size: 1466 bytes --]

(use-modules (gnu))
(use-service-modules networking ssh)
(use-package-modules admin
		     disk
		     )
(operating-system
  (host-name "g1")
  (timezone "America/New_York")
  (locale "en_US.utf8")
  (bootloader (grub-configuration (device "/dev/sda")))
  (file-systems (cons (file-system
			(device "g1sd")
			(title 'label)
			(mount-point "/")
			(type "ext4"))
		      %base-file-systems))
  (users (cons* (user-account
		 (name "glc")
		 (comment "g l c")
		 (group "users")
		 (supplementary-groups '("wheel"))
		 (home-directory "/home/glc"))
		(user-account
		 (name "glc2")
		 (comment "glc2")
		 (group "users")
		 (supplementary-groups '("wheel"))
		 (home-directory "/home/glc2"))
		(user-account
		 (name "glc3")
		 (comment "glc3")
		 (group "users")
		 (supplementary-groups '("wheel"))
		 (home-directory "/home/glc3"))
		(user-account
		 (name "glc4")
		 (comment "glc4")
		 (group "users")
		 (supplementary-groups '("wheel"))
		 (home-directory "/home/glc4"))
		(user-account
		 (name "glc5")
		 (comment "glc5")
		 (group "users")
		 (supplementary-groups '("wheel"))
		 (home-directory "/home/glc5"))
		(user-account
		 (name "glc6")
		 (comment "glc6")
		 (group "users")
		 (supplementary-groups '("wheel"))
		 (home-directory "/home/glc6"))
		%base-user-accounts))
  (packages
   (cons*
    glibc-utf8-locales
    parted
    %base-packages))
  (services (cons* (dhcp-client-service)
		   (lsh-service #:port-number 22)
		   %base-services)))

[-- Attachment #3: glc5.scm --]
[-- Type: application/octet-stream, Size: 289 bytes --]

(use-package-modules
 fonts ;; font-dejavu
 base
 ssh rsync wget screen
 version-control
 emacs
 curl
 xorg certs
 graphviz
 ) 
(packages->manifest
 (list
  font-dejavu
  gnu-make
  openssh nss-certs xauth rsync wget git git-manpages
  emacs magit screen 
  curl ;; lpaste
  graphviz
  ))

^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#22981: guix-edit does not find git checkout directory
  2016-03-10 21:56 bug#22981: guix-edit does not find git checkout directory myglc2
@ 2016-03-11 11:03 ` Alex Kost
  2016-03-11 14:45   ` myglc2
  0 siblings, 1 reply; 11+ messages in thread
From: Alex Kost @ 2016-03-11 11:03 UTC (permalink / raw)
  To: myglc2; +Cc: 22981

myglc2 (2016-03-11 00:56 +0300) wrote:

> Situation: GuixSD sysetm managaed by user glc using a git checkout in
> /home/glc/sre/guix.
>
> Problem: When I follow the manual to set up a vanila user (glc5) with a
> separate git checkout in /home/glc5/src/guix, guix-edit does not find
> the checkout source.
>
> Note: I followed comments from the #guix irc channel to set links in glc
> and root that point to the glc checkout:
>
> glc@g1 ~/src/guix [env]$ stat ~/.config/guix/latest
>   File: ‘/home/glc/.config/guix/latest’ -> ‘../../src/guix’
>
> glc@g1 ~/src/guix [env]$ stat /root/.config/guix/latest
>   File: ‘/root/.config/guix/latest’ -> ‘/home/glc/src/guix’
>
>
> CREATE USER glc5
[...]
> glc5@g1 ~/src$ stat ~/.config/guix/latest
> stat: cannot stat ‘/home/glc5/.config/guix/latest’: No such file or directory

I don't understand, so you made the links for user 'glc', but then you
check another user 'glc5'.  If you run emacs under glc, and try "M-x
guix-edit" there, you should be pointed to "~/.config/guix/latest".
Since you didn't make such a link for 'glc5', you are pointed to the
store.

Anyway, you can configure any directory for "M-x guix-edit" by setting
'guix-directory' variable.  See (info "(guix) Emacs Commands").  It is
not in the hmtl manual yet.

-- 
Alex

^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#22981: guix-edit does not find git checkout directory
  2016-03-11 11:03 ` Alex Kost
@ 2016-03-11 14:45   ` myglc2
  2016-03-12  9:15     ` Alex Kost
  0 siblings, 1 reply; 11+ messages in thread
From: myglc2 @ 2016-03-11 14:45 UTC (permalink / raw)
  To: 22981

Alex Kost <alezost@gmail.com> writes:

> myglc2 (2016-03-11 00:56 +0300) wrote:
>
>> Situation: GuixSD sysetm managaed by user glc using a git checkout in
>> /home/glc/sre/guix.
>>
>> Problem: When I follow the manual to set up a vanila user (glc5) with a
>> separate git checkout in /home/glc5/src/guix, guix-edit does not find
>> the checkout source.
>>
>> Note: I followed comments from the #guix irc channel to set links in glc
>> and root that point to the glc checkout:
>>
>> glc@g1 ~/src/guix [env]$ stat ~/.config/guix/latest
>>   File: ‘/home/glc/.config/guix/latest’ -> ‘../../src/guix’
>>
>> glc@g1 ~/src/guix [env]$ stat /root/.config/guix/latest
>>   File: ‘/root/.config/guix/latest’ -> ‘/home/glc/src/guix’
>>
>>
>> CREATE USER glc5
> [...]
>> glc5@g1 ~/src$ stat ~/.config/guix/latest
>> stat: cannot stat ‘/home/glc5/.config/guix/latest’: No such file or directory
>
> I don't understand, so you made the links for user 'glc', but then you
> check another user 'glc5'.  If you run emacs under glc, and try "M-x
> guix-edit" there, you should be pointed to "~/.config/guix/latest".

Yes, but it only it works for me (glc) because I studied guix for 6
weeks and learned an unpublished trick on #guix IRC channel.

> Since you didn't make such a link for 'glc5', you are pointed to the
> store.

Yes because I am trying to help you improve the user experience. So glc5
is a simulated new user following the manual literally ;)

> Anyway, you can configure any directory for "M-x guix-edit" by setting
> 'guix-directory' variable.  See (info "(guix) Emacs Commands").  It is
> not in the hmtl manual yet.

But what is the _recommended_ way to do this?

A) set 'guix-directory' variable in emacs init file?

B) make symbolic link to ~/src/guix from ~/.config/guix/latest?

C) something else?

And if a _new_ user starts reading in "8.1 Building from Git", how do
they find this information?

FWIW, I vote for method B.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#22981: guix-edit does not find git checkout directory
  2016-03-11 14:45   ` myglc2
@ 2016-03-12  9:15     ` Alex Kost
  2016-03-13  2:00       ` myglc2
  0 siblings, 1 reply; 11+ messages in thread
From: Alex Kost @ 2016-03-12  9:15 UTC (permalink / raw)
  To: myglc2; +Cc: 22981

myglc2 (2016-03-11 17:45 +0300) wrote:

> Alex Kost <alezost@gmail.com> writes:
[...]
>> Anyway, you can configure any directory for "M-x guix-edit" by setting
>> 'guix-directory' variable.  See (info "(guix) Emacs Commands").  It is
>> not in the hmtl manual yet.
>
> But what is the _recommended_ way to do this?

I would say the recommended way is A, as it only effects this particular
task (sets a default directory with guix packages for emacs), but this
is free software(!), you can use whatever you like and the way you want.

> A) set 'guix-directory' variable in emacs init file?

I set this var in my emacs config.

> B) make symbolic link to ~/src/guix from ~/.config/guix/latest?

Actually, I use this too, because this is one of the general solutions
to use guix from a git checkout.

> C) something else?

Christopher Allan Webber invented another interesting way of using guix
emacs stuff with guix from git¹:

(setq guix-guile-program '(".../guix/pre-inst-env" "guile"))

> And if a _new_ user starts reading in "8.1 Building from Git", how do
> they find this information?

Since you want to use "M-x guix-edit" command, you are supposed to read
its docstring (C-h f guix-edit) or a part of the manual where it is
described.  You can learn about 'guix-directory' variable from both
places.

¹ http://dustycloud.org/blog/guix-package-manager-without-make-install

-- 
Alex

^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#22981: guix-edit does not find git checkout directory
  2016-03-12  9:15     ` Alex Kost
@ 2016-03-13  2:00       ` myglc2
  2016-03-13  9:38         ` Alex Kost
  0 siblings, 1 reply; 11+ messages in thread
From: myglc2 @ 2016-03-13  2:00 UTC (permalink / raw)
  To: 22981

Alex Kost <alezost@gmail.com> writes:

> myglc2 (2016-03-11 17:45 +0300) wrote:
>
>> Alex Kost <alezost@gmail.com> writes:
> [...]
>>> Anyway, you can configure any directory for "M-x guix-edit" by setting
>>> 'guix-directory' variable.  See (info "(guix) Emacs Commands").  It is
>>> not in the hmtl manual yet.
>>
>> But what is the _recommended_ way to do this?
>
> I would say the recommended way is A, as it only effects this particular
> task (sets a default directory with guix packages for emacs), but this
> is free software(!), you can use whatever you like and the way you want.
>
>> A) set 'guix-directory' variable in emacs init file?
>
> I set this var in my emacs config.
>
>> B) make symbolic link to ~/src/guix from ~/.config/guix/latest?
>
> Actually, I use this too, because this is one of the general solutions
> to use guix from a git checkout.
>
>> C) something else?
>
> Christopher Allan Webber invented another interesting way of using guix
> emacs stuff with guix from git¹:
>
> (setq guix-guile-program '(".../guix/pre-inst-env" "guile"))
>
>> And if a _new_ user starts reading in "8.1 Building from Git", how do
>> they find this information?
>
> Since you want to use "M-x guix-edit" command, you are supposed to read
> its docstring (C-h f guix-edit) or a part of the manual where it is
> described.  You can learn about 'guix-directory' variable from both
> places.
>
> ¹ http://dustycloud.org/blog/guix-package-manager-without-make-install

Thank you for this great summary. This list + the post you referenced
make me feel better that I am taking so long to figure Guix out ;)

OTOH, guix as more state-full than I had hoped ;(

I suggest that you think of it this way: You are running an easter egg
hunt (I hope this is an OK analogy). You have awesome eggs (No kidding,
I can attest that the Guix eggs are truly awesome).  When the children
find the eggs they will be truly happy. But the eggs are hard to
find. If the children don't find the eggs they will not be happy!  Worse
yet, your eggs will be wasted! So ... make it easy for children to find
your eggs.

You probably already thought of this: Can guix be made easier to use by
converting some of the state-full guix configuration into guix recipe
inputs?

^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#22981: guix-edit does not find git checkout directory
  2016-03-13  2:00       ` myglc2
@ 2016-03-13  9:38         ` Alex Kost
  2016-03-13 15:42           ` myglc2
  0 siblings, 1 reply; 11+ messages in thread
From: Alex Kost @ 2016-03-13  9:38 UTC (permalink / raw)
  To: myglc2; +Cc: 22981

myglc2 (2016-03-13 05:00 +0300) wrote:

[...]
> Thank you for this great summary. This list + the post you referenced
> make me feel better that I am taking so long to figure Guix out ;)
>
> OTOH, guix as more state-full than I had hoped ;(
>
> I suggest that you think of it this way: You are running an easter egg
> hunt (I hope this is an OK analogy). You have awesome eggs (No kidding,
> I can attest that the Guix eggs are truly awesome).  When the children
> find the eggs they will be truly happy. But the eggs are hard to
> find. If the children don't find the eggs they will not be happy!  Worse
> yet, your eggs will be wasted! So ... make it easy for children to find
> your eggs.

I don't know what an "easter egg hunt" is, but I think I get your
analogy. 

> You probably already thought of this: Can guix be made easier to use by
> converting some of the state-full guix configuration into guix recipe
> inputs?

Sorry, my knowledge in English language is not enough to understand this
question.  Could you explain what "state-full" means?

-- 
Alex

^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#22981: guix-edit does not find git checkout directory
  2016-03-13  9:38         ` Alex Kost
@ 2016-03-13 15:42           ` myglc2
  2016-03-13 22:01             ` Ludovic Courtès
  0 siblings, 1 reply; 11+ messages in thread
From: myglc2 @ 2016-03-13 15:42 UTC (permalink / raw)
  To: 22981

Alex Kost <alezost@gmail.com> writes:

> myglc2 (2016-03-13 05:00 +0300) wrote:
>
> [...]
>> You probably already thought of this: Can guix be made easier to use by
>> converting some of the state-full guix configuration into guix recipe
>> inputs?
>
> Sorry, my knowledge in English language is not enough to understand this
> question.  Could you explain what "state-full" means?

NP. I may have caused a problem by miss-spelling "stateful", which I
meant this way ...

"The output of a digital circuit or computer program at any time is
completely determined by its current inputs and its state."

  Ref: https://en.wikipedia.org/wiki/State_(computer_science)


Guix is "stateful" because, to use a git checkout, I have to set "state"
variables like ...

    (setq guix-directory "/home/glc/src/guix")

    (let ((dir "~/dev/guix/emacs"))
      (add-to-list 'load-path dir)
      (setq guix-load-path dir)
      (require 'guix-init nil t))

    '(safe-local-variable-values
       (quote
        ((bug-reference-bug-regexp . "<https?://\\(debbugs\\|bugs\\)\\.gnu\\.org/\\([0-9]+\\)>")))))
    (custom-set-faces

    /home/glc/.config/guix/latest’ -> ‘../../src/guix'
    /root/.config/guix/latest’ -> ‘/home/glc/src/GUI’


Guix would be less stateful (AKA more "stateless") if instead I could
put something like ...

    (guix
      (#:use-git #t)
      (#:git-directory:"~/src/guix"))

... in user.scm and do 'guix package -m user.scm' ;)

^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#22981: guix-edit does not find git checkout directory
  2016-03-13 15:42           ` myglc2
@ 2016-03-13 22:01             ` Ludovic Courtès
  2016-03-14  8:02               ` Alex Kost
  0 siblings, 1 reply; 11+ messages in thread
From: Ludovic Courtès @ 2016-03-13 22:01 UTC (permalink / raw)
  To: myglc2; +Cc: 22981

myglc2 <myglc2@gmail.com> skribis:

> Guix is "stateful" because, to use a git checkout, I have to set "state"
> variables like ...
>
>     (setq guix-directory "/home/glc/src/guix")
>
>     (let ((dir "~/dev/guix/emacs"))
>       (add-to-list 'load-path dir)
>       (setq guix-load-path dir)
>       (require 'guix-init nil t))
>
>     '(safe-local-variable-values
>        (quote
>         ((bug-reference-bug-regexp . "<https?://\\(debbugs\\|bugs\\)\\.gnu\\.org/\\([0-9]+\\)>")))))
>     (custom-set-faces
>
>     /home/glc/.config/guix/latest’ -> ‘../../src/guix'
>     /root/.config/guix/latest’ -> ‘/home/glc/src/GUI’
>
>
> Guix would be less stateful (AKA more "stateless") if instead I could
> put something like ...
>
>     (guix
>       (#:use-git #t)
>       (#:git-directory:"~/src/guix"))

It seems to me that it’s not a question of “statefulness”, but rather a
question of how much configuration is needed to have guix.el use the
Guix that you want.

Ludo’.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#22981: guix-edit does not find git checkout directory
  2016-03-13 22:01             ` Ludovic Courtès
@ 2016-03-14  8:02               ` Alex Kost
  2016-03-24 20:02                 ` Ludovic Courtès
  0 siblings, 1 reply; 11+ messages in thread
From: Alex Kost @ 2016-03-14  8:02 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: myglc2, 22981

Ludovic Courtès (2016-03-14 01:01 +0300) wrote:

> myglc2 <myglc2@gmail.com> skribis:
>
>> Guix is "stateful" because, to use a git checkout, I have to set "state"
>> variables like ...
>>
>>     (setq guix-directory "/home/glc/src/guix")
>>
>>     (let ((dir "~/dev/guix/emacs"))
>>       (add-to-list 'load-path dir)
>>       (setq guix-load-path dir)
>>       (require 'guix-init nil t))
>>
>>     '(safe-local-variable-values
>>        (quote
>>         ((bug-reference-bug-regexp . "<https?://\\(debbugs\\|bugs\\)\\.gnu\\.org/\\([0-9]+\\)>")))))
>>     (custom-set-faces
>>
>>     /home/glc/.config/guix/latest’ -> ‘../../src/guix'
>>     /root/.config/guix/latest’ -> ‘/home/glc/src/GUI’
>>
>>
>> Guix would be less stateful (AKA more "stateless") if instead I could
>> put something like ...
>>
>>     (guix
>>       (#:use-git #t)
>>       (#:git-directory:"~/src/guix"))
>
> It seems to me that it’s not a question of “statefulness”, but rather a
> question of how much configuration is needed to have guix.el use the
> Guix that you want.

I agree.  If someone want to use a "non-installed" software, (s)he has
to do some additional configuration.  I don't see how to reduce such
a configuration to set up emacs code from a guix git checkout.

-- 
Alex

^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#22981: guix-edit does not find git checkout directory
  2016-03-14  8:02               ` Alex Kost
@ 2016-03-24 20:02                 ` Ludovic Courtès
  2016-03-25  1:18                   ` myglc2
  0 siblings, 1 reply; 11+ messages in thread
From: Ludovic Courtès @ 2016-03-24 20:02 UTC (permalink / raw)
  To: Alex Kost; +Cc: myglc2, 22981

Alex Kost <alezost@gmail.com> skribis:

> Ludovic Courtès (2016-03-14 01:01 +0300) wrote:
>
>> myglc2 <myglc2@gmail.com> skribis:
>>
>>> Guix is "stateful" because, to use a git checkout, I have to set "state"
>>> variables like ...
>>>
>>>     (setq guix-directory "/home/glc/src/guix")
>>>
>>>     (let ((dir "~/dev/guix/emacs"))
>>>       (add-to-list 'load-path dir)
>>>       (setq guix-load-path dir)
>>>       (require 'guix-init nil t))
>>>
>>>     '(safe-local-variable-values
>>>        (quote
>>>         ((bug-reference-bug-regexp . "<https?://\\(debbugs\\|bugs\\)\\.gnu\\.org/\\([0-9]+\\)>")))))
>>>     (custom-set-faces
>>>
>>>     /home/glc/.config/guix/latest’ -> ‘../../src/guix'
>>>     /root/.config/guix/latest’ -> ‘/home/glc/src/GUI’
>>>
>>>
>>> Guix would be less stateful (AKA more "stateless") if instead I could
>>> put something like ...
>>>
>>>     (guix
>>>       (#:use-git #t)
>>>       (#:git-directory:"~/src/guix"))
>>
>> It seems to me that it’s not a question of “statefulness”, but rather a
>> question of how much configuration is needed to have guix.el use the
>> Guix that you want.
>
> I agree.  If someone want to use a "non-installed" software, (s)he has
> to do some additional configuration.  I don't see how to reduce such
> a configuration to set up emacs code from a guix git checkout.

Should this issue be closed?

Ludo’.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#22981: guix-edit does not find git checkout directory
  2016-03-24 20:02                 ` Ludovic Courtès
@ 2016-03-25  1:18                   ` myglc2
  0 siblings, 0 replies; 11+ messages in thread
From: myglc2 @ 2016-03-25  1:18 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: Alex Kost, 22981

ludo@gnu.org (Ludovic Courtès) writes:

> Alex Kost <alezost@gmail.com> skribis:
>
>> Ludovic Courtès (2016-03-14 01:01 +0300) wrote:
>>
>>> myglc2 <myglc2@gmail.com> skribis:
>>>
>>>> Guix is "stateful" because, to use a git checkout, I have to set "state"
>>>> variables like ...
>>>>
>>>>     (setq guix-directory "/home/glc/src/guix")
>>>>
>>>>     (let ((dir "~/dev/guix/emacs"))
>>>>       (add-to-list 'load-path dir)
>>>>       (setq guix-load-path dir)
>>>>       (require 'guix-init nil t))
>>>>
>>>>     '(safe-local-variable-values
>>>>        (quote
>>>>         ((bug-reference-bug-regexp . "<https?://\\(debbugs\\|bugs\\)\\.gnu\\.org/\\([0-9]+\\)>")))))
>>>>     (custom-set-faces
>>>>
>>>>     /home/glc/.config/guix/latest’ -> ‘../../src/guix'
>>>>     /root/.config/guix/latest’ -> ‘/home/glc/src/GUI’
>>>>
>>>>
>>>> Guix would be less stateful (AKA more "stateless") if instead I could
>>>> put something like ...
>>>>
>>>>     (guix
>>>>       (#:use-git #t)
>>>>       (#:git-directory:"~/src/guix"))
>>>
>>> It seems to me that it’s not a question of “statefulness”, but rather a
>>> question of how much configuration is needed to have guix.el use the
>>> Guix that you want.
>>
>> I agree.  If someone want to use a "non-installed" software, (s)he has
>> to do some additional configuration.  I don't see how to reduce such
>> a configuration to set up emacs code from a guix git checkout.
>
> Should this issue be closed?
>
> Ludo’.
Sure! Thanks! - George

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2016-03-25  1:19 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-10 21:56 bug#22981: guix-edit does not find git checkout directory myglc2
2016-03-11 11:03 ` Alex Kost
2016-03-11 14:45   ` myglc2
2016-03-12  9:15     ` Alex Kost
2016-03-13  2:00       ` myglc2
2016-03-13  9:38         ` Alex Kost
2016-03-13 15:42           ` myglc2
2016-03-13 22:01             ` Ludovic Courtès
2016-03-14  8:02               ` Alex Kost
2016-03-24 20:02                 ` Ludovic Courtès
2016-03-25  1:18                   ` myglc2

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.