emacs.nix: remove unneeded packages
This commit is contained in:
parent
3031859921
commit
4f4e91a02d
1 changed files with 5 additions and 6 deletions
|
@ -94,6 +94,7 @@
|
||||||
]));
|
]));
|
||||||
in {
|
in {
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
environment.variables.PATH = ["$XDG_CONFIG_HOME/emacs/bin"];
|
||||||
home-manager.users.${username} = {
|
home-manager.users.${username} = {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
# needed my native-comp
|
# needed my native-comp
|
||||||
|
@ -113,7 +114,7 @@ in {
|
||||||
# pinentry-emacs) # in-emacs gnupg prompts
|
# pinentry-emacs) # in-emacs gnupg prompts
|
||||||
zstd # for undo-fu-session/undo-tree compression
|
zstd # for undo-fu-session/undo-tree compression
|
||||||
|
|
||||||
## Module dependencies
|
# Module dependencies
|
||||||
# :checkers spell
|
# :checkers spell
|
||||||
(aspellWithDicts (ds: with ds; [de en en-computers en-science]))
|
(aspellWithDicts (ds: with ds; [de en en-computers en-science]))
|
||||||
# :tools editorconfig
|
# :tools editorconfig
|
||||||
|
@ -121,16 +122,14 @@ in {
|
||||||
# :tools lookup & :lang org +roam
|
# :tools lookup & :lang org +roam
|
||||||
sqlite
|
sqlite
|
||||||
# :lang latex & :lang org (latex previews)
|
# :lang latex & :lang org (latex previews)
|
||||||
texlive.combined.scheme-medium
|
# texlive.combined.scheme-medium
|
||||||
# :lang beancount
|
# :lang beancount
|
||||||
beancount
|
# beancount
|
||||||
fava
|
# fava
|
||||||
# :lang nix
|
# :lang nix
|
||||||
age
|
age
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.variables.PATH = ["$XDG_CONFIG_HOME/emacs/bin"];
|
|
||||||
|
|
||||||
services.emacs = {
|
services.emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = custom-emacs;
|
package = custom-emacs;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue