diff options
author | Thanos Apollo <thanos@thanosapollo> | 2023-02-10 22:12:20 +0200 |
---|---|---|
committer | Thanos Apollo <thanos@thanosapollo> | 2023-02-10 22:12:20 +0200 |
commit | 83676f60a5bf141f2ec3a48a86b57354972a8d5e (patch) | |
tree | fbf4d9003a7f5c6440659823981f4bcc20ddf8a7 /.emacs.d | |
parent | 4d6a7376af5d49c0043e72308469421282a32554 (diff) |
emacs: Update guixSD setup
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/emacs.org | 2 | ||||
-rw-r--r-- | .emacs.d/init.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/emacs.org b/.emacs.d/emacs.org index 424106b..298a38f 100644 --- a/.emacs.d/emacs.org +++ b/.emacs.d/emacs.org @@ -53,7 +53,7 @@ we use ~guix-emacs-autoload-packages~ to load emacs packages installed using gui + If you are running GuixSD, replace the following hostnames ~fsociety~ or ~heisenberg~ with your own ~$HOSTNAME~ #+begin_src emacs-lisp ;; When guix t, load emacs packages - (when (require 'guix t) + (when (require 'guix nil 'noerror) (add-to-list 'load-path "~/.guix-profile/share/emacs/site-lisp") (guix-emacs-autoload-packages)) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index afba6a2..5cea6f4 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1,5 +1,5 @@ ;; When guix t, load emacs packages -(when (require 'guix t) +(when (require 'guix nil 'noerror) (add-to-list 'load-path "~/.guix-profile/share/emacs/site-lisp") (guix-emacs-autoload-packages)) |