feat(home): add emacs, enable it for maidena host

This commit is contained in:
xezo360hye 2024-08-16 01:44:14 +03:00
parent c2a85ce5df
commit db2758d0fc
3 changed files with 23 additions and 5 deletions

View File

@ -1,9 +1,10 @@
{ pkgs, ... }:
{
imports = [
./modules/nethack/default.nix
./modules/firefox/default.nix
./modules/neovim/default.nix
./modules/nethack
./modules/firefox
./modules/neovim
./modules/emacs
];
programs = {

View File

@ -1,6 +1,6 @@
{
imports = [
./modules/hyprland/default.nix
./modules/plasma/default.nix
./modules/hyprland
./modules/plasma
];
}

View File

@ -0,0 +1,17 @@
{ pkgs, ... }:
{
programs.emacs = {
enable = true;
package = pkgs.emacs-gtk;
extraPackages = epkgs: with epkgs; [
doom
magit
minimap
rainbow-delimiters
company
company-tabnine
];
};
}