53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{ pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
# Build deps
|
|
nodejs
|
|
cmake
|
|
libtool
|
|
|
|
# Additional packages for functionality
|
|
isync
|
|
ispell
|
|
texliveFull
|
|
mu
|
|
zip
|
|
unzip
|
|
|
|
# Fonts
|
|
maple-mono.truetype
|
|
|
|
# LSP Servers
|
|
nil
|
|
ccls
|
|
rust-analyzer
|
|
yaml-language-server
|
|
python3Packages.python-lsp-server
|
|
nodePackages.typescript-language-server
|
|
nodePackages.vscode-json-languageserver
|
|
];
|
|
|
|
programs = {
|
|
emacs = {
|
|
enable = true;
|
|
package = pkgs.emacs30;
|
|
extraPackages = epkgs: with epkgs; [
|
|
mu4e
|
|
vterm
|
|
all-the-icons
|
|
nerd-icons
|
|
];
|
|
};
|
|
};
|
|
|
|
home.file = {
|
|
".emacs".source = ../../dotfiles/.emacs;
|
|
".emacs.d/config.org".source = ../../dotfiles/.emacs.d/config.org;
|
|
".emacs.d/terminal.org".source = ../../dotfiles/.emacs.d/terminal.org;
|
|
".emacs.d/functions.org".source = ../../dotfiles/.emacs.d/functions.org;
|
|
".emacs.d/email.org".source = ../../dotfiles/.emacs.d/email.org;
|
|
".emacs.d/org.org".source = ../../dotfiles/.emacs.d/org.org;
|
|
".emacs.d/lsp.org".source = ../../dotfiles/.emacs.d/lsp.org;
|
|
".mbsyncrc".source = ../../dotfiles/.mbsyncrc;
|
|
};
|
|
}
|