diff options
| author | seth <[email protected]> | 2023-10-30 06:09:38 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-11-06 22:30:17 +0000 |
| commit | ea6a9e2d5f3dd0d5ff12e80a4669efb21542c00c (patch) | |
| tree | 8183f420472094a0c68fd59db7127c16ecd9d9c1 /workflow.nix | |
| parent | d70e5f53a7339d33aa9b39b7bce4ec9dd2a84ae2 (diff) | |
tree-wide: garnix -> gha
Diffstat (limited to 'workflow.nix')
| -rw-r--r-- | workflow.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/workflow.nix b/workflow.nix new file mode 100644 index 0000000..e9cec5d --- /dev/null +++ b/workflow.nix @@ -0,0 +1,16 @@ +{ + githubWorkflowGenerator = { + outputs = [ + "checks" + "devShells" + "darwinConfigurations" + "nixosConfigurations" + "homeConfigurations" + ]; + + overrides = { + checks.systems = ["x86_64-linux"]; + devShells.systems = ["x86_64-linux" "x86_64-darwin"]; + }; + }; +} |
