summaryrefslogtreecommitdiff
path: root/nix/workflow.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-15 02:40:21 -0500
committerseth <[email protected]>2023-12-15 16:41:13 -0500
commitaad424b4ba9989be4536390749ad0de351dd13ef (patch)
treefe99931dc498d69c8d09d23c4b5aed7661212231 /nix/workflow.nix
parent03223e6e6d061a18b66a69092c59e6a0cb6d1d3f (diff)
flake: move nix to folder to nix/
Diffstat (limited to 'nix/workflow.nix')
-rw-r--r--nix/workflow.nix15
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"];
+ };
+ };
+}