Added functional emacs

This commit is contained in:
James Patrick 2021-12-13 22:41:51 -05:00
parent 2c64ba8530
commit 69a65a3d8f
2 changed files with 35 additions and 1 deletions

View File

@ -1,3 +1,4 @@
{ config, pkgs, ... }: {
imports = [ ./firefox.nix ./mako.nix ./nextcloud.nix ./waybar.nix ];
imports =
[ ./firefox.nix ./mako.nix ./nextcloud.nix ./waybar.nix ./emacs.nix ];
}

View File

@ -0,0 +1,33 @@
{ inputs, config, lib, pkgs, ... }:
# TODO Still need the following dependecies
# - Language tools (grammer)
let cfg = config.application.emacs;
in with lib; {
options = {
application.emacs = {
enable = mkOption {
default = true;
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
];
};
};
}