blob: 661e065861160cd63ec2511197bccf1d2cc9330a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ config, lib, pkgs, ... }:
{
options.emacs.enable = lib.mkEnableOption "Enable emacs and setup";
config = lib.mkIf config.emacs.enable {
programs.emacs = {
enable = true;
package = pkgs.emacs;
};
};
}
|