aboutsummaryrefslogtreecommitdiff
path: root/home-manager/programs/emacs/default.nix~
blob: fe1f7bca2fcb17030c8ae4cdb311fea9770df765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:
let
  settings = {
    client.enable = true;
    package = pkgs.emacs-gtk;
    extraConfig = builtins.readFile ./init.el;
  };
in
{
  services.emacs = {
    enable = true;
    inherit (settings) client package extraConfig;
  };
}