Rename doomDirWithAllPackages -> ...Modules

This commit is contained in:
Marien Zwart 2024-05-26 16:31:12 +10:00
parent 313b9ef400
commit 48ba3bb39c
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View file

@ -37,7 +37,7 @@ let
mkDoom = args: (makeDoomPackages (common // args)).doomEmacs;
mkDoomDir = args: writeTextDir "init.el" (toInit args);
minimalDoomDir = mkDoomDir { config = [ "default" ]; };
fullDoomDir = (makeDoomPackages (common // { doomDir = emptyDirectory; })).doomDirWithAllPackages;
fullDoomDir = (makeDoomPackages (common // { doomDir = emptyDirectory; })).doomDirWithAllModules;
doomTest = name: init: doomArgs: testers.testEqualContents {
assertion = "name = ${name}; modules = ${toPretty {} init}; args = ${toPretty {} doomArgs};";
expected = writeText "doom-expected" "Doom functions";