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

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