Skip to content
Snippets Groups Projects
Commit 90b1ef8a authored by Daniel Firth's avatar Daniel Firth
Browse files

fix system argument for checks

parent ac89fd52
No related merge requests found
...@@ -40,15 +40,19 @@ ...@@ -40,15 +40,19 @@
in in
{ {
apps = { apps = {
horizon-gen-nix = horizon-gen-nix-app.apps.${system}.horizon-gen-nix; horizon-gen-nix = horizon-gen-nix-app.apps.${system}.horizon-gen-nix;
horizon-gen-gitlab-ci = { horizon-gen-gitlab-ci = {
type = "app"; type = "app";
program = "${horizon-gen-gitlab-ci}/bin/gen-gitlab-ci"; program = "${horizon-gen-gitlab-ci}/bin/gen-gitlab-ci";
}; };
}; };
checks = { checks = {
dhall-format = lint-utils.outputs.linters.x86_64-linux.dhall-format ./.; dhall-format = lint-utils.outputs.linters.${system}.dhall-format ./.;
nixpkgs-fmt = lint-utils.outputs.linters.x86_64-linux.nixpkgs-fmt ./.; nixpkgs-fmt = lint-utils.outputs.linters.${system}.nixpkgs-fmt ./.;
}; };
inherit legacyPackages; inherit legacyPackages;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment