Add back Emacs (#64)

This commit is contained in:
Sridhar Ratnakumar 2024-10-05 15:32:08 -04:00 committed by GitHub
parent 26abb4606e
commit a53a45f651
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 482 additions and 26 deletions

View file

@ -0,0 +1,21 @@
{ flake, pkgs, ... }:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
imports = [
inputs.nix-doom-emacs-unstraightened.hmModule
];
programs.doom-emacs = {
enable = true;
emacs = pkgs.emacs30;
doomDir = self + /doom.d;
experimentalFetchTree = true; # Disable if there are fetcher issues
extraPackages = epkgs: with epkgs; [
vterm
];
};
}

View file

@ -3,6 +3,7 @@
imports = [
./all/tmux.nix
./all/neovim.nix
./all/emacs.nix
# ./helix.nix
./all/ssh.nix
./all/starship.nix