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
|
gnome3.adwaita-icon-theme
|
||||||
adwaita-qt
|
adwaita-qt
|
||||||
lxappearance
|
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";
|
environment.shellAliases.ssh = "kitty +kitten ssh";
|
||||||
|
|
|
@ -1,9 +1,33 @@
|
||||||
{ config, pkgs, ... }: {
|
{ config, pkgs, ... }: {
|
||||||
services.emacs = {
|
services.emacs.enable = true;
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
home.sessionPath = [
|
home = {
|
||||||
"${config.xdg.configHome}/emacs/bin"
|
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