mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-02 04:37:44 +08:00
21 lines
393 B
Nix
21 lines
393 B
Nix
{ 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
|
|
];
|
|
};
|
|
}
|