summaryrefslogtreecommitdiff
path: root/workflow.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-10-30 06:09:38 -0400
committerseth <[email protected]>2023-11-06 22:30:17 +0000
commitea6a9e2d5f3dd0d5ff12e80a4669efb21542c00c (patch)
tree8183f420472094a0c68fd59db7127c16ecd9d9c1 /workflow.nix
parentd70e5f53a7339d33aa9b39b7bce4ec9dd2a84ae2 (diff)
tree-wide: garnix -> gha
Diffstat (limited to 'workflow.nix')
-rw-r--r--workflow.nix16
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"];
+ };
+ };
+}