Rename doomdirs/example and doom-example

Move `doomdirs/example/` to just `doomdir/`, and rename the package
using it from `doom-example` to `doom-emacs`.

I do not expect to need multiple doomdirs checked in again, and I can
unclutter the packages provided by the flake a bit now that most of them
are checks.
This commit is contained in:
Marien Zwart 2024-05-27 21:28:20 +10:00
parent 2fc58787da
commit 0f7eb10233
No known key found for this signature in database
5 changed files with 9 additions and 9 deletions

View file

@ -69,9 +69,9 @@ in {
})).emacsWithDoom;
allModules = mkDoom { doomDir = allModsDoomDir; };
allModulesAndFlags = mkDoom { doomDir = allFlagsDoomDir; };
example = mkDoom { doomDir = ./doomdirs/example; };
example = mkDoom { doomDir = ./doomdir; };
example-without-loader = mkDoom {
doomDir = ./doomdirs/example;
doomDir = ./doomdir;
profileName = "";
};
interactive = doomTest "minimal" { config = [ "default" ]; } { };