diff options
Diffstat (limited to 'nix/workflow.nix')
| -rw-r--r-- | nix/workflow.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/nix/workflow.nix b/nix/workflow.nix new file mode 100644 index 0000000..600a1bb --- /dev/null +++ b/nix/workflow.nix @@ -0,0 +1,15 @@ +{ + githubWorkflowGenerator = { + outputs = [ + "checks" + "devShells" + "packages" + ]; + + overrides = { + checks.systems = ["x86_64-linux"]; + devShells.systems = ["x86_64-linux"]; + packages.systems = ["x86_64-linux"]; + }; + }; +} |
