summaryrefslogtreecommitdiffstats
path: root/emacs.nix
blob: 0fc6f54ea2a25f70c1e620d0e07952f8474b1e0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  pkgs,
  inputs,
  config,
  ...
}: {
  # TODO: Look into emacsclient
  services.emacs = {
    enable = true;
    startWithGraphical = config.services.xserver.enable;
    install = true;
    # defaultEditor = true;
  };
}