diff options
| author | seth <[email protected]> | 2023-12-15 02:38:39 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-15 16:41:13 -0500 |
| commit | 03223e6e6d061a18b66a69092c59e6a0cb6d1d3f (patch) | |
| tree | 87d1d7aa8edd58790a078b36ceebf0e702570a09 /parts/workflow.nix | |
| parent | 2ee6985ee62036afe8c1adc76849ffaf42a08bb8 (diff) | |
ci: garnix -> gha + attic
Diffstat (limited to 'parts/workflow.nix')
| -rw-r--r-- | parts/workflow.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/parts/workflow.nix b/parts/workflow.nix new file mode 100644 index 0000000..600a1bb --- /dev/null +++ b/parts/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"]; + }; + }; +} |
