37 lines
572 B
Nix
37 lines
572 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
emacs-all-the-icons-fonts
|
|
sbcl
|
|
];
|
|
programs.emacs = {
|
|
enable = true;
|
|
extraPackages = epkgs: with epkgs; [
|
|
use-package
|
|
magit
|
|
org
|
|
org-roam
|
|
evil
|
|
evil-collection
|
|
which-key
|
|
counsel
|
|
ivy
|
|
swiper
|
|
doom-themes
|
|
nord-theme
|
|
projectile
|
|
flycheck
|
|
company
|
|
lsp-mode
|
|
lsp-ui
|
|
dap-mode
|
|
treemacs
|
|
treemacs-evil
|
|
treemacs-projectile
|
|
sly
|
|
];
|
|
extraConfig = builtins.readFile ./init.el;
|
|
};
|
|
}
|
|
|