lib/modules: add evalNixvim

Evaluates a nixvim config, by default also checking warnings and assertions.

This used internally by the standalone wrapper.
This commit is contained in:
Matt Sturgeon 2024-08-04 21:54:17 +01:00
parent bc7a7ad1d6
commit 851edc8df1
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
2 changed files with 42 additions and 20 deletions

View file

@ -16,4 +16,38 @@ rec {
defaultPkgs = pkgs;
}
// extraSpecialArgs;
# Evaluate nixvim modules, checking warnings and assertions
evalNixvim =
{
modules ? [ ],
extraSpecialArgs ? { },
# Set to false to disable warnings and assertions
# Intended for use with tests, where we may not want to check assertions
# WARNING: This argument may be removed without notice:
check ? true,
}:
let
result = lib.evalModules {
modules = [ ../modules/top-level ] ++ modules;
specialArgs = specialArgsWith extraSpecialArgs;
};
failedAssertions = getAssertionMessages result.config.assertions;
checked =
if failedAssertions != [ ] then
throw "\nFailed assertions:\n${lib.concatStringsSep "\n" (map (x: "- ${x}") failedAssertions)}"
else
lib.showWarnings result.config.warnings result;
in
if check then checked else result;
# Return the messages for all assertions that failed
getAssertionMessages =
assertions:
lib.pipe assertions [
(lib.filter (x: !x.assertion))
(lib.map (x: x.message))
];
}