mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-08 17:27:22 +08:00
Add back Emacs (#64)
This commit is contained in:
parent
26abb4606e
commit
a53a45f651
7 changed files with 482 additions and 26 deletions
21
modules/home/all/emacs.nix
Normal file
21
modules/home/all/emacs.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
@ -3,6 +3,7 @@
|
|||
imports = [
|
||||
./all/tmux.nix
|
||||
./all/neovim.nix
|
||||
./all/emacs.nix
|
||||
# ./helix.nix
|
||||
./all/ssh.nix
|
||||
./all/starship.nix
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue