summaryrefslogtreecommitdiff
path: root/workflow.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-13 22:06:24 -0500
committerseth <[email protected]>2023-12-14 03:34:54 -0500
commit78a344c27ded577693734ed733a57cfd582700a3 (patch)
tree2679c6b33073c70c6f33a66f5ef3955fefe64bff /workflow.nix
parent974decdfa3449f47892532f9ac728275fb9fa2df (diff)
tree-wide: back to attic & gha again
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..ad34794
--- /dev/null
+++ b/workflow.nix
@@ -0,0 +1,16 @@
+{
+ githubWorkflowGenerator = {
+ outputs = [
+ "checks"
+ "devShells"
+ "nixosConfigurations"
+ "darwinConfigurations"
+ ];
+
+ overrides = {
+ app.systems = ["x86_64-linux"];
+ checks.systems = ["x86_64-linux"];
+ devShells.systems = ["x86_64-linux"];
+ };
+ };
+}