@enmus, thank you for considering the question. As far as I understood, none of emacs packages are listed in template available repositories. But it would be fantastic if I am wrong here. The repos I know for emacs are:
- elpa GNU ELPA Packages
- melpa Package Listing
- org Index of /elpa/
In the end, there is a way to tell emacs to use the qubes proxy (like in pip). Following:
The code below worked on my emacs when placed on the init.el config file:
(setq url-proxy-services’(
; (“no_proxy” . “^\(localhost\|10.*\)”)
(“http” . “127.0.0.1:8082”)
(“https” . “127.0.0.1:8082”)
))
(require 'package)
; NOTE: can include here local folder – see elpy instructions for manual download
(setq package-archives '(
; (“melpa” . “Package Listing”)
(“org” . “Index of /elpa/”)
; (“elpa” . “GNU ELPA Packages”)
))