2022-06-23 02:57:41 -04:00
|
|
|
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
|
|
|
|
{
|
2022-09-04 04:19:50 -04:00
|
|
|
imports = [ ../../common/programs/emacs.nix ];
|
2022-06-23 02:57:41 -04:00
|
|
|
|
|
|
|
config = lib.mkIf config.nathan.programs.emacs.enable {
|
|
|
|
# Setup service
|
|
|
|
services.emacs = {
|
2023-03-14 12:37:59 -04:00
|
|
|
# enable = config.nathan.programs.emacs.service;
|
|
|
|
enable = false;
|
2022-06-23 02:57:41 -04:00
|
|
|
client.enable = true;
|
2022-09-30 23:21:21 -04:00
|
|
|
defaultEditor = true;
|
2022-07-04 17:41:18 -04:00
|
|
|
};
|
2022-06-23 02:57:41 -04:00
|
|
|
};
|
|
|
|
}
|