From 6035625df776e0a9f52176a0cf732806dcd366a6 Mon Sep 17 00:00:00 2001 From: Brian Botha Date: Tue, 3 Sep 2024 09:39:29 +1000 Subject: [PATCH] chore: making `nixpkgs-matrix` an indirect input --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 898892f91..903bc269c 100644 --- a/flake.nix +++ b/flake.nix @@ -3,7 +3,10 @@ nixpkgs.url = "github:nixos/nixpkgs"; flake-utils.url = "github:numtide/flake-utils"; - nixpkgs-matrix.url = "github:matrixai/nixpkgs-matrix"; + nixpkgs-matrix = { + type = "indirect"; + id = "nixpkgs-matrix"; + }; nixpkgs.follows = "nixpkgs-matrix/nixpkgs"; };