about summary refs log tree commit diff
path: root/modules/workstation/emacs/default.nix
blob: a0432bd25ba562528fb66e410bcd0d55bae059bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:

{
  environment.systemPackages = with pkgs; [
    (emacsWithPackages (epkgs: [
      (runCommandNoCC "default.el" {} ''
        mkdir -p $out/share/emacs/site-lisp
        cp ${./default.el} $out/share/emacs/site-lisp/default.el
      '')
    ] ++ (with epkgs; [
      magit
    ])))
  ];
}