1 2 3 4 5 6 7 8 9 10 11 12 13 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; }; }