Hi Luis, thanks for your help. I have got: gfp@Tuxedo ~$ guix package --list-profiles /home/gfp/Projekte/Emacs/guix-profil /home/gfp/Projekte/Musik/guix-profil /home/gfp/.config/guix/current /home/gfp/.guix-profile > If you still have a copy of both manifests, the one that declares Emacs >> things only and the one that declares what goes into your default user >> profile, then you simply tell guix to use both manifests to create a new >> generation of your main profile: > guix package -m path/to/manifest-emacs.scm -m >> path/to/manifest-main.scm I would have to write: guix package -m /home/gfp/Projekte/Emacs/emacs.scm -m /home/gfp/.guix-profile/manifest Is that all right? thanks Gottfried Am 14.12.24 um 19:13 schrieb Luis Felipe: > Hi Gottfried, > > On 14/12/24 15:29, gfp wrote: >> Hi Guix, >> >> I created a manifest for Emacs and put it in a separate profile. >> >> How can I now transfer this manifest to my main profile? > > If you still have a copy of both manifests, the one that declares Emacs > things only and the one that declares what goes into your default user > profile, then you simply tell guix to use both manifests to create a new > generation of your main profile: > >     guix package -m path/to/manifest-emacs.scm -m > path/to/manifest-main.scm > > If you lost any of your manifest files, you can export them from their > corresponding profiles. For example, > > ❶ Ask guix to list the profiles it knows about (maybe your > Emacs-specific profile will be listed): > >     guix package --list-profiles > > ❷ Export a manifest from a given profile (your Emacs profile, for example): > >     guix package --export-manifest > --profile=/path/to/gottfried-emacs-profile > manifest-emacs.scm > > I hope that helps,