From 952bc49e8341bb2ae46e2270f0ed6e45bfe82a9c Mon Sep 17 00:00:00 2001 From: Manuel Mendez Date: Fri, 3 Oct 2025 17:20:24 -0400 Subject: [PATCH] nix: Set strictDeps for module This is nix best practice and already set for the crane based builds but was missing here. --- module-build.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/module-build.nix b/module-build.nix index 5d3410d4..c7ac80bb 100644 --- a/module-build.nix +++ b/module-build.nix @@ -34,6 +34,7 @@ stdenv.mkDerivation { version = "${kernel.version}-${bcachefs-tools.version}"; __structuredAttrs = true; + strictDeps = true; src = bcachefs-tools.dkms;