my laptops nixos configuration, hopefully less messy this time (but still a lil' messy)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
450B

  1. final: prev:
  2. let
  3. myEmacs = prev.emacs;
  4. emacsWithPackages = (prev.emacsPackagesGen myEmacs).emacsWithPackages;
  5. in {
  6. emacs = emacsWithPackages (epkgs:
  7. (with epkgs.melpaStablePackages; [
  8. magit
  9. evil
  10. nix-mode
  11. rainbow-delimiters
  12. paredit
  13. evil-surround
  14. evil-textobj-anyblock
  15. ]) ++ (with epkgs.melpaPackages; [
  16. racket-mode
  17. ]) ++ (with epkgs.elpaPackages; [
  18. ]) ++ (with final; [
  19. ]));
  20. }