Tomas Volf <~@wolfsden.cz> writes:

> Thank you very much, I can just stuff it into .guile for now.

For the benefit of others on the mailing list, something like the below
in .guile ensures that the customization runs only for guix repl:

#+begin_src scheme
  (when (equal? (module-name (current-module)) '(guix-user))
    ;; `guix repl`-only init code
    ;; ensure custom channels are available in guix repl
    (use-modules (gnu packages)) ;; <https://issues.guix.gnu.org/61343>
    )
#+end_src

-- 
Suhail

Reply via email to