diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 14 |
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; + }; +} |
