modules/tested: set default

This commit is contained in:
Max Headroom 2022-05-31 14:21:19 +02:00 committed by GitHub
parent a43f3fda01
commit e5faf79baa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,6 +6,7 @@ with lib;
tested.requiredChecks = mkOption {
type = with types; listOf str;
description = "Flake checks to perform.";
default = [];
};
};
config.system.extraDependencies = map (name: inputs.self.checks.${pkgs.system}.${name}) config.tested.requiredChecks;