Added functional emacs
This commit is contained in:
parent
2c64ba8530
commit
69a65a3d8f
|
@ -1,3 +1,4 @@
|
||||||
{ config, pkgs, ... }: {
|
{ config, pkgs, ... }: {
|
||||||
imports = [ ./firefox.nix ./mako.nix ./nextcloud.nix ./waybar.nix ];
|
imports =
|
||||||
|
[ ./firefox.nix ./mako.nix ./nextcloud.nix ./waybar.nix ./emacs.nix ];
|
||||||
}
|
}
|
||||||
|
|
33
modules/applications/emacs.nix
Normal file
33
modules/applications/emacs.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user