added replEval for checking syntax errors

This commit is contained in:
Bit Borealis 2023-03-27 20:52:02 +00:00
parent e20f30d35a
commit 7b4a09e7a2
Signed by: theotheroracle
GPG Key ID: 2D816A2DCA6E5649
1 changed files with 6 additions and 0 deletions

6
replEval.nix Normal file
View File

@ -0,0 +1,6 @@
{ ... }:
{
imported = (import <nixpkgs/lib>).evalModules {
modules = [ ./default.nix ];
};
}