feat(home): add emacs, enable it for maidena host
This commit is contained in:
@@ -1,9 +1,10 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./modules/nethack/default.nix
|
./modules/nethack
|
||||||
./modules/firefox/default.nix
|
./modules/firefox
|
||||||
./modules/neovim/default.nix
|
./modules/neovim
|
||||||
|
./modules/emacs
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./modules/hyprland/default.nix
|
./modules/hyprland
|
||||||
./modules/plasma/default.nix
|
./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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user