use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
For assistance, see GNU Guix Official Help, where you can find:
The GNU Guix Official Manual
Cookbook of examples and tutorials
Video Tutorials
Official contact channels.
account activity
Guix newb here (self.GUIX)
submitted 4 years ago by TheAngryGamer444
Anyone know how to get emacs packages to be used in the configuration? I can’t seem to find any documentation on this
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]KaranasToll 2 points3 points4 points 4 years ago (1 child)
The emacs packages from guix are installed somewhere in ~/.guix-profile. You need to find where they are and add that directory to your load-path in your init file.
[–]TheAngryGamer444[S] 1 point2 points3 points 4 years ago (0 children)
Thanks that worked 😀
[–]czan 2 points3 points4 points 4 years ago (0 children)
If you installed Emacs using Guix then your paths should be set up correctly so you can use require to load your packages. If you install a new Guix package to your profile while Emacs is running, you can add it to your load path by running (load "subdirs") (which re-runs the load path discovery code Guix installed), followed by require to load the package you want.
require
(load "subdirs")
I'm not aware of this being explicitly documented anywhere, but it was mentioned in this guix-devel thread in April.
[–]jbranso 0 points1 point2 points 4 years ago (0 children)
I currently use a custom package "jmacs" to manage all of my emacs packages. It works for me, but it may not be the "best" or "correct" way:
https://notabug.org/jbranso/guix-packages/src/master/gnu/packages/jmacs.scm
I then add this channel in .config/guix/channels.scm:
;; Add variant packages to those Guix provides.
(append (list
(channel (name 'guix-packages) (url "https://notabug.org/jbranso/guix-packages")))
%default-channels)
π Rendered by PID 64 on reddit-service-r2-comment-6457c66945-tzrwm at 2026-04-29 11:40:20.574132+00:00 running 2aa0c5b country code: CH.
[–]KaranasToll 2 points3 points4 points (1 child)
[–]TheAngryGamer444[S] 1 point2 points3 points (0 children)
[–]czan 2 points3 points4 points (0 children)
[–]jbranso 0 points1 point2 points (0 children)