15 lines
407 B
EmacsLisp
15 lines
407 B
EmacsLisp
(require 'guix-autoloads)
|
|
|
|
(defvar guix-load-path
|
|
(replace-regexp-in-string "${prefix}" "@prefix@" "@emacsuidir@")
|
|
"Directory with scheme files for \"guix.el\" package.")
|
|
|
|
(defvar guix-default-profile
|
|
(concat (or (getenv "NIX_STATE_DIR") "@guix_localstatedir@/guix")
|
|
"/profiles/per-user/"
|
|
(getenv "USER")
|
|
"/guix-profile")
|
|
"Default Guix profile.")
|
|
|
|
(provide 'guix-init)
|