From 6d2d203ecee979eb084fd4d04e83706d3ca28360 Mon Sep 17 00:00:00 2001 From: Marien Zwart Date: Sun, 26 May 2024 11:47:31 +1000 Subject: [PATCH] Use generated minimal doomDir for tests I intend to remove the static one. --- checks.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checks.nix b/checks.nix index f2695af..78b6d79 100644 --- a/checks.nix +++ b/checks.nix @@ -60,7 +60,7 @@ let ''; }; in { - minimal = mkDoom { doomDir = ./doomdirs/minimal; }; + minimal = mkDoom { doomDir = minimalDoomDir; }; minimalEmacs = (makeDoomPackages (common // { doomDir = minimalDoomDir; })).emacsWithDoom;