diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-01-05 04:22:04 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-01-05 04:22:04 +0300 |
commit | 5e81e4814d6da25ce8531baf0bc2d23da7fc26b3 (patch) | |
tree | cd887f80d9f98d42db556b4a42bcb8d5faa91c84 /modules/darwin | |
parent | 2022-12-17 (diff) |
2023-01-05
Diffstat (limited to '')
-rw-r--r-- | modules/darwin/emacs.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/darwin/emacs.nix b/modules/darwin/emacs.nix index 02bfb83..fd32276 100644 --- a/modules/darwin/emacs.nix +++ b/modules/darwin/emacs.nix @@ -7,9 +7,9 @@ with lib; let cfg = config.nixfiles.modules.emacs; in { config = mkIf cfg.enable { - # services.emacs = { - # enable = true; - # package = config.hm.programs.doom-emacs.package; - # }; + services.emacs = { + enable = false; # TODO Figure out how to use this. + inherit (config.hm.programs.doom-emacs) package; + }; }; } |