From cc61a97263b5622d926bbe586c3c0205f4203ca8 Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Fri, 18 Jul 2025 10:45:01 +0200 Subject: ... --- system-profiles/bcachefs.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'system-profiles/bcachefs.nix') diff --git a/system-profiles/bcachefs.nix b/system-profiles/bcachefs.nix index f9f048b9..ddddcc93 100644 --- a/system-profiles/bcachefs.nix +++ b/system-profiles/bcachefs.nix @@ -1,6 +1,16 @@ -{ pkgs, ... } : { +{ pkgs, lib, ... } : { config = { boot.supportedFilesystems.bcachefs = true; environment.systemPackages = with pkgs; [ bcachefs-tools ]; + + boot.kernelPatches = [ + { + name = "bcachefs-casefold-fix"; + patch = null; + extraStructuredConfig = with lib.kernel; { + UNICODE = no; + }; + } + ]; }; } -- cgit v1.2.3