guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: home-environment + local git development


From: Christopher Howard
Subject: Re: home-environment + local git development
Date: Wed, 06 Nov 2024 13:27:50 -0900

For posterity, this gave me what I needed:

``` guile scheme
(map cadr (package-propagated-inputs emacs-guix))
```

So I could do

``` guile scheme
(home-environment
  ;; Below is the list of packages that will show up in your
  ;; Home profile, under ~/.guix-home/profile.
 (packages (append
            (map cadr (package-propagated-inputs emacs-guix))
            emacs-packages
            (specifications->packages
             (list "abook"
                   "anki"
                   ...etc...
```

I imagine a package transformation is also possible, to install emacs-guix 
straight from my local clone, but I haven't looked into this yet.

-- 
Christopher Howard



reply via email to

[Prev in Thread] Current Thread [Next in Thread]