We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82f3e8e commit 0db0918Copy full SHA for 0db0918
template/flake.nix
@@ -1,11 +1,14 @@
1
{
2
description = "A Tidal Cycles project. https://tidalcycles.org/";
3
4
- inputs.tidal.url = "github:mitchmindtree/tidalcycles.nix";
+ inputs = {
5
+ tidal.url = "github:mitchmindtree/tidalcycles.nix";
6
+ utils.url = "github:numtide/flake-utils";
7
+ };
8
9
outputs =
10
inputs:
- inputs.tidal.utils.eachSupportedSystem (system: {
11
+ inputs.utils.lib.eachDefaultSystem (system: {
12
devShells = inputs.tidal.devShells.${system};
13
formatter = inputs.tidal.formatter.${system};
14
});
0 commit comments