adding all emacsPackages to nixos
This commit is contained in:
parent
4499b432da
commit
d007d3c12f
107
README.org
107
README.org
|
@ -542,10 +542,109 @@ Emacs service
|
|||
services.emacs = {
|
||||
enable = true;
|
||||
package = with pkgs; ((emacsPackagesFor emacsNativeComp).emacsWithPackages
|
||||
(epkgs: [
|
||||
epkgs.vterm
|
||||
epkgs.magit
|
||||
epkgs.pdf-tools
|
||||
(epkgs: with epkgs; [
|
||||
vterm
|
||||
magit
|
||||
pdf-tools
|
||||
eglot
|
||||
consult-eglot
|
||||
org
|
||||
org-roam
|
||||
command-log-mode
|
||||
all-the-icons
|
||||
doom-modeline
|
||||
doom-themes
|
||||
rainbow-delimiters
|
||||
smartparens
|
||||
aggressive-indent
|
||||
adaptive-wrap
|
||||
which-key
|
||||
exec-path-from-shell
|
||||
no-littering
|
||||
evil
|
||||
evil-collection
|
||||
general
|
||||
evil-escape
|
||||
evil-surround
|
||||
evil-org
|
||||
org-super-agenda
|
||||
websocket
|
||||
org-roam-ui
|
||||
org-present
|
||||
org-modern
|
||||
unicode-fonts
|
||||
emojify
|
||||
undo-tree
|
||||
visual-fill-column
|
||||
toc-org
|
||||
pulsar
|
||||
vertico
|
||||
consult
|
||||
marginalia
|
||||
all-the-icons-completion
|
||||
embark
|
||||
embark-consult
|
||||
corfu
|
||||
orderless
|
||||
cape
|
||||
devdocs
|
||||
yasnippet
|
||||
tempel
|
||||
projectile
|
||||
simple-httpd
|
||||
avy
|
||||
evil-avy
|
||||
ace-link
|
||||
ace-window
|
||||
helpful
|
||||
format-all
|
||||
web-mode
|
||||
lua-mode
|
||||
nix-mode
|
||||
cmake-mode
|
||||
fennel-mode
|
||||
yaml-mode
|
||||
docker
|
||||
docker-tramp
|
||||
fish-mode
|
||||
markdown-mode
|
||||
qml-mode
|
||||
csv-mode
|
||||
restclient
|
||||
ob-restclient
|
||||
dart-mode
|
||||
flutter
|
||||
hover
|
||||
direnv
|
||||
all-the-icons-dired
|
||||
dired-single
|
||||
dired-rainbow
|
||||
diredfl
|
||||
dired-rsync
|
||||
ledger-mode
|
||||
org-msg
|
||||
calfw
|
||||
calfw-org
|
||||
calfw-ical
|
||||
org-caldav
|
||||
org-wild-notifier
|
||||
magit
|
||||
sly
|
||||
nov
|
||||
elfeed
|
||||
elfeed-org
|
||||
bongo
|
||||
emms
|
||||
transmission
|
||||
hass
|
||||
pass
|
||||
password-store
|
||||
password-store-otp
|
||||
plz
|
||||
ement
|
||||
qrencode
|
||||
gcmh
|
||||
use-package
|
||||
pkgs.mu ]));
|
||||
};
|
||||
#+end_src
|
||||
|
|
|
@ -411,10 +411,109 @@
|
|||
services.emacs = {
|
||||
enable = true;
|
||||
package = with pkgs; ((emacsPackagesFor emacsNativeComp).emacsWithPackages
|
||||
(epkgs: [
|
||||
epkgs.vterm
|
||||
epkgs.magit
|
||||
epkgs.pdf-tools
|
||||
(epkgs: with epkgs; [
|
||||
vterm
|
||||
magit
|
||||
pdf-tools
|
||||
eglot
|
||||
consult-eglot
|
||||
org
|
||||
org-roam
|
||||
command-log-mode
|
||||
all-the-icons
|
||||
doom-modeline
|
||||
doom-themes
|
||||
rainbow-delimiters
|
||||
smartparens
|
||||
aggressive-indent
|
||||
adaptive-wrap
|
||||
which-key
|
||||
exec-path-from-shell
|
||||
no-littering
|
||||
evil
|
||||
evil-collection
|
||||
general
|
||||
evil-escape
|
||||
evil-surround
|
||||
evil-org
|
||||
org-super-agenda
|
||||
websocket
|
||||
org-roam-ui
|
||||
org-present
|
||||
org-modern
|
||||
unicode-fonts
|
||||
emojify
|
||||
undo-tree
|
||||
visual-fill-column
|
||||
toc-org
|
||||
pulsar
|
||||
vertico
|
||||
consult
|
||||
marginalia
|
||||
all-the-icons-completion
|
||||
embark
|
||||
embark-consult
|
||||
corfu
|
||||
orderless
|
||||
cape
|
||||
devdocs
|
||||
yasnippet
|
||||
tempel
|
||||
projectile
|
||||
simple-httpd
|
||||
avy
|
||||
evil-avy
|
||||
ace-link
|
||||
ace-window
|
||||
helpful
|
||||
format-all
|
||||
web-mode
|
||||
lua-mode
|
||||
nix-mode
|
||||
cmake-mode
|
||||
fennel-mode
|
||||
yaml-mode
|
||||
docker
|
||||
docker-tramp
|
||||
fish-mode
|
||||
markdown-mode
|
||||
qml-mode
|
||||
csv-mode
|
||||
restclient
|
||||
ob-restclient
|
||||
dart-mode
|
||||
flutter
|
||||
hover
|
||||
direnv
|
||||
all-the-icons-dired
|
||||
dired-single
|
||||
dired-rainbow
|
||||
diredfl
|
||||
dired-rsync
|
||||
ledger-mode
|
||||
org-msg
|
||||
calfw
|
||||
calfw-org
|
||||
calfw-ical
|
||||
org-caldav
|
||||
org-wild-notifier
|
||||
magit
|
||||
sly
|
||||
nov
|
||||
elfeed
|
||||
elfeed-org
|
||||
bongo
|
||||
emms
|
||||
transmission
|
||||
hass
|
||||
pass
|
||||
password-store
|
||||
password-store-otp
|
||||
plz
|
||||
ement
|
||||
qrencode
|
||||
gcmh
|
||||
use-package
|
||||
pkgs.mu ]));
|
||||
};
|
||||
services.samba-wsdd.enable = true;
|
||||
|
|
Loading…
Reference in a new issue