16 lines
551 B
Nix
16 lines
551 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
let
|
|
myEmacs = pkgs.emacs-nox;
|
|
emacsWithPackages = (pkgs.emacsPackagesGen myEmacs).emacsWithPackages;
|
|
in
|
|
emacsWithPackages (epkgs: (with epkgs.melpaStablePackages; [
|
|
magit # ; Integrate git <C-x g>
|
|
zerodark-theme # ; Nicolas' theme
|
|
]) ++ (with epkgs.melpaPackages; [
|
|
|
|
]) ++ (with epkgs.elpaPackages; [
|
|
beacon # ; highlight my cursor when scrolling
|
|
nameless # ; hide current package name everywhere in elisp code
|
|
]) ++ [
|
|
pkgs.notmuch # From main packages set
|
|
])
|