mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
feat: add emacs rss server (elfeed)
This commit is contained in:
parent
86de91c6e3
commit
aee51f5b09
2 changed files with 10 additions and 4 deletions
|
|
@ -1130,7 +1130,7 @@ My work machine. Built for more security, this is the gold standard of my config
|
|||
syncthing = true;
|
||||
monitoring = true;
|
||||
jenkins = false;
|
||||
emacs = false;
|
||||
emacs = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
@ -6097,7 +6097,7 @@ Also, the system state version is set here. No need to touch it.
|
|||
}
|
||||
#+end_src
|
||||
|
||||
**** Emacs (RSS Server)
|
||||
**** Emacs elfeed (RSS Server)
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: h:4e6824bc-c3db-485d-b543-4072e6283b62
|
||||
:END:
|
||||
|
|
@ -6111,6 +6111,7 @@ Also, the system state version is set here. No need to touch it.
|
|||
|
||||
services.emacs = {
|
||||
enable = true;
|
||||
|
||||
install = true;
|
||||
startWithGraphical = false;
|
||||
};
|
||||
|
|
@ -6118,8 +6119,8 @@ Also, the system state version is set here. No need to touch it.
|
|||
services.nginx = {
|
||||
virtualHosts = {
|
||||
"signpost.swarsel.win" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
enableACME = false;
|
||||
forceSSL = false;
|
||||
acmeRoot = null;
|
||||
locations = {
|
||||
"/" = {
|
||||
|
|
|
|||
|
|
@ -98,5 +98,10 @@
|
|||
(run-with-timer 0 (* 30 60) 'bjm/elfeed-updater)
|
||||
|
||||
(setq httpd-port 9812) ; replace NNNNN with a port equalling your start port + 10 (or whatever)
|
||||
(setq httpd-host "0.0.0.0") ; replace NNNNN with a port equalling your start port + 10 (or whatever)
|
||||
(setq httpd-root "/home/swarsel/.emacs.d/elpa/elfeed-web-20240729.1741/") ; replace NNNNN with a port equalling your start port + 10 (or whatever)
|
||||
|
||||
(httpd-start)
|
||||
(elfeed-web-start)
|
||||
|
||||
;; /home/swarsel/.emacs.d/elpa/elfeed-web-20240729.1741/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue