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

{ inputs, config, lib, pkgs, user, ... }:
# TODO Still need the following dependecies
# - Language tools (grammer)
let
this = config.my.application.emacs;
graphical = config.my.graphical;
in
with lib; {
options = {
my.application.emacs.enable = mkOption {
default = graphical.enable;
type = with types; bool;
};
};
config = mkIf this.enable {
nixpkgs.overlays = [ inputs.emacs-overlay.overlay ];
home-manager.users."${user.name}" = {
programs.emacs = {
package = pkgs.emacs28NativeComp;
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
ripgrep
sqlite
wordnet
];
};
};
}