summaryrefslogtreecommitdiff
path: root/workflow.nix
blob: ad34794eb5725536558859f1a5dcdf72d8dbc408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  githubWorkflowGenerator = {
    outputs = [
      "checks"
      "devShells"
      "nixosConfigurations"
      "darwinConfigurations"
    ];

    overrides = {
      app.systems = ["x86_64-linux"];
      checks.systems = ["x86_64-linux"];
      devShells.systems = ["x86_64-linux"];
    };
  };
}