blob: 0a45011382b86927c15af2f954e84e703ec20100 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# users/tdback/modules/editor/default.nix
#
# My primary editor for writing code, checking mail, and doing other emacs-y
# things.
#
# TODO: Use unstable epkgs to get mail working with the standalone binary.
{
pkgs,
...
}:
{
# Provide emacs and emacsclient.
programs.emacs = {
enable = true;
package = pkgs.unstable.emacs30-gtk3;
extraPackages =
epkgs: with epkgs; [
jinx # spell-checker
mu4e # mail client
];
};
# Run emacs as a systemd daemon in graphical environments.
services.emacs = {
enable = true;
package = pkgs.unstable.emacs30-gtk3;
startWithUserSession = "graphical";
defaultEditor = true;
client.enable = true;
};
# Include any package dependencies used in my emacs configuration.
home.packages = with pkgs.unstable; [
nixd # editing nix code
ripgrep # faster searches
emacsPackages.jinx # spell-checker package
enchant # spell-checker library
hunspellDicts.en-us-large # spell-checker dictionary
hledger # finances
imagemagick # viewing images
mu # mail client
];
}
|