diff options
| author | Nick Cao <nickcao@nichi.co> | 2023-11-28 10:03:59 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-28 10:03:59 -0500 |
| commit | f0323031a33f4e2507bf6f57a6bb64d31adcbcbe (patch) | |
| tree | 60cfe0ddab86185caf9fa81724ca58fd183e3800 | |
| parent | Merge pull request #270635 from NixOS/backport-270430-to-release-23.11 (diff) | |
| parent | bcachefs: fix lib.kernel.option miss use. (diff) | |
| download | nixpkgs-f0323031a33f4e2507bf6f57a6bb64d31adcbcbe.tar.gz | |
Merge pull request #269454 from NixOS/backport-269381-to-release-23.11
[Backport release-23.11] bcachefs: fix lib.kernel.option miss use.
| -rw-r--r-- | nixos/modules/tasks/filesystems/bcachefs.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/tasks/filesystems/bcachefs.nix b/nixos/modules/tasks/filesystems/bcachefs.nix index 1a1bbf8f6a81..f28fd5cde9c1 100644 --- a/nixos/modules/tasks/filesystems/bcachefs.nix +++ b/nixos/modules/tasks/filesystems/bcachefs.nix @@ -98,7 +98,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) ] ) ); |
