From 86b9120436fa1d51d1764b94afe93512b6636090 Mon Sep 17 00:00:00 2001 From: Daniel Hill Date: Thu, 23 Nov 2023 19:08:57 +1300 Subject: [PATCH] bcachefs: fix lib.kernel.option miss use. option is a function not a set. (cherry picked from commit 34a58ce86ff61f35c839f8f776036259d59e3c84) --- nixos/modules/tasks/filesystems/bcachefs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/tasks/filesystems/bcachefs.nix b/nixos/modules/tasks/filesystems/bcachefs.nix index d144ce62dc27..c002a4fee116 100644 --- a/nixos/modules/tasks/filesystems/bcachefs.nix +++ b/nixos/modules/tasks/filesystems/bcachefs.nix @@ -97,7 +97,7 @@ let lib.elem (kernel.structuredExtraConfig.BCACHEFS_FS or null) [ lib.kernel.module lib.kernel.yes - lib.kernel.option.yes + (lib.kernel.option lib.kernel.yes) ] ) );