summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-07 21:39:13 -0500
committerseth <[email protected]>2023-11-07 21:47:01 -0500
commitb7254760ccedc8fc81a21b4e707c628556df1f6c (patch)
tree8a1b17a663e86cb9625c2fceddf0010c2cb2554c /flake.nix
initial commit
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..f6d4cd3
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,14 @@
+{
+ description = "generate github matrices with nix!";
+
+ inputs.nixpkgs-lib.url = "github:nix-community/nixpkgs.lib";
+
+ outputs = {
+ self,
+ nixpkgs-lib,
+ ...
+ }: {
+ lib = import ./lib.nix nixpkgs-lib.lib;
+ flakeModule = import ./module.nix self.lib;
+ };
+}