diff --git a/checks/default.nix b/checks/default.nix index 3629929..c671778 100644 --- a/checks/default.nix +++ b/checks/default.nix @@ -1,7 +1,10 @@ { - perSystem = {config, ...}: { + perSystem = {config, pkgs, ...}: { checks = { inherit (config.packages) ccrEmacs; + test = pkgs.hello.overrideDerivation (_: { + name = "test"; + }); }; }; }