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

38 lines
879 B
Nix
Raw Normal View History

{ inputs, config, lib, pkgs, user, ... }:
2021-12-14 03:41:51 +00:00
# TODO Still need the following dependecies
# - Language tools (grammer)
2021-12-14 05:24:26 +00:00
let
2022-08-14 02:42:16 +00:00
this = config.my.application.emacs;
2022-08-14 02:42:04 +00:00
graphical = config.my.graphical;
in
with lib; {
2021-12-14 03:41:51 +00:00
options = {
2022-08-14 02:42:04 +00:00
my.application.emacs.enable = mkOption {
2022-03-24 04:00:26 +00:00
default = graphical.enable;
type = with types; bool;
2021-12-14 03:41:51 +00:00
};
};
2022-08-14 02:42:16 +00:00
config = mkIf this.enable {
2021-12-14 03:41:51 +00:00
nixpkgs.overlays = [ inputs.emacs-overlay.overlay ];
home-manager.users."${user.name}" = {
2021-12-14 03:41:51 +00:00
programs.emacs = {
package = pkgs.emacs28NativeComp;
2021-12-14 03:41:51 +00:00
enable = true;
extraPackages = epkgs: [ epkgs.vterm ];
};
home.packages = with pkgs; [
(aspellWithDicts (dicts: with dicts; [ en en-computers en-science ]))
editorconfig-core-c
fd
graphviz
html-tidy
2021-12-14 03:41:51 +00:00
ripgrep
sqlite
wordnet
];
};
};
}