From b1d90500480fa856e86c99363b936a112b5e3721 Mon Sep 17 00:00:00 2001 From: thedavidmeister Date: Wed, 28 Feb 2024 00:22:21 +0400 Subject: [PATCH] add flake --- flake.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 00000000..6ad5f78e --- /dev/null +++ b/flake.nix @@ -0,0 +1,18 @@ +{ + description = "Flake for development workflows."; + + inputs = { + flake-utils.url = "github:numtide/flake-utils"; + rainix.url = "github:rainprotocol/rainix"; + }; + + outputs = { self, flake-utils, rainix, ... }: + flake-utils.lib.eachDefaultSystem (system: + let + pkgs = rainix.pkgs.${system}; + in rec { + packages = rainix.packages.${system}; + devShells = rainix.devShells.${system}; + } + ); +} \ No newline at end of file