diff --git a/flake.nix b/flake.nix new file mode 100644 index 00000000..e156b181 --- /dev/null +++ b/flake.nix @@ -0,0 +1,17 @@ +{ + description = "Flake for development workflows."; + + inputs = { + rainix.url = "github:rainprotocol/rainix"; + flake-utils.url = "github:numtide/flake-utils"; + }; + + outputs = { self, flake-utils, rainix }: + flake-utils.lib.eachDefaultSystem (system: + { + packages = rainix.packages.${system}; + devShells = rainix.devShells.${system}; + } + ); + +}