aboutsummaryrefslogtreecommitdiff
path: root/nixos/.flake/home/services/emacs.nix.org
blob: 1a1144615978c110e0ebfdcbe9f1d64dcc47c633 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#+title: Emacs Service Configuration

Enable Emacs daemon and client.
#+begin_src nix :tangle ~/.flake/home/services/emacs.nix :mkdirp yes
{ config, pkgs, ... }:

{
  services.emacs = {
    enable = true;
    client.enable = true;
    socketActivation.enable = true;
  };
}
#+end_src