feat: clean up doom emacs configuration
This commit is contained in:
parent
ad5e753d88
commit
0e56b0e14a
2 changed files with 30 additions and 24 deletions
|
@ -48,24 +48,6 @@
|
|||
gnome3.adwaita-icon-theme
|
||||
adwaita-qt
|
||||
lxappearance
|
||||
|
||||
emacs
|
||||
ripgrep
|
||||
coreutils
|
||||
cmake
|
||||
fd
|
||||
fzf
|
||||
clang
|
||||
mu
|
||||
isync
|
||||
tetex
|
||||
jq
|
||||
gnumake
|
||||
shellcheck
|
||||
nodejs
|
||||
nodePackages.prettier
|
||||
|
||||
(aspellWithDicts (dicts: with dicts; [ en en-computers en-science ]))
|
||||
];
|
||||
|
||||
environment.shellAliases.ssh = "kitty +kitten ssh";
|
||||
|
|
|
@ -1,9 +1,33 @@
|
|||
{ config, pkgs, ... }: {
|
||||
services.emacs = {
|
||||
enable = true;
|
||||
};
|
||||
services.emacs.enable = true;
|
||||
|
||||
home.sessionPath = [
|
||||
"${config.xdg.configHome}/emacs/bin"
|
||||
];
|
||||
home = {
|
||||
sessionPath = [
|
||||
"${config.xdg.configHome}/emacs/bin"
|
||||
];
|
||||
|
||||
sessionVariables = {
|
||||
DOOMDIR = "/etc/nixos/users/profiles/emacs/doom/";
|
||||
};
|
||||
|
||||
packages = with pkgs; [
|
||||
emacs
|
||||
ripgrep
|
||||
coreutils
|
||||
cmake
|
||||
fd
|
||||
fzf
|
||||
clang
|
||||
mu
|
||||
isync
|
||||
tetex
|
||||
jq
|
||||
gnumake
|
||||
shellcheck
|
||||
nodejs
|
||||
nodePackages.prettier
|
||||
|
||||
(aspellWithDicts (dicts: with dicts; [ en en-computers en-science ]))
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue