feat(home): add emacs, enable it for maidena host
This commit is contained in:
parent
c2a85ce5df
commit
db2758d0fc
@ -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 = {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
imports = [
|
||||
./modules/hyprland/default.nix
|
||||
./modules/plasma/default.nix
|
||||
./modules/hyprland
|
||||
./modules/plasma
|
||||
];
|
||||
}
|
||||
|
17
home/modules/emacs/default.nix
Normal file
17
home/modules/emacs/default.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user