This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/applications/emacs.nix

36 lines
866 B
Nix
Raw Normal View History

2021-12-14 03:41:51 +00:00
{ inputs, config, lib, pkgs, ... }:
# TODO Still need the following dependecies
# - Language tools (grammer)
2021-12-14 05:24:26 +00:00
let
cfg = config.application.emacs;
graphical = config.graphical;
2021-12-14 03:41:51 +00:00
in with lib; {
options = {
application.emacs = {
enable = mkOption {
2021-12-14 05:24:26 +00:00
default = graphical.enable;
2021-12-14 03:41:51 +00:00
type = with types; bool;
description = "Insert joke about emacs is an operating system.";
};
};
};
config = mkIf cfg.enable {
nixpkgs.overlays = [ inputs.emacs-overlay.overlay ];
home-manager.users.james = {
programs.emacs = {
package = pkgs.emacsGcc;
enable = true;
extraPackages = epkgs: [ epkgs.vterm ];
};
home.packages = with pkgs; [
(aspellWithDicts (dicts: with dicts; [ en en-computers en-science ]))
ripgrep
sqlite
wordnet
];
};
};
}