mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
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)
|