Skip to content

Commit

Permalink
Add flake.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
ninokeldishvili committed May 7, 2024
1 parent c5f6de5 commit 079f782
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -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};
}
);

}

0 comments on commit 079f782

Please sign in to comment.