blob: be12bf208f7b0b212430d313f5fee3b1b2d6e1ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ pkgs, lib, ... } : {
config = {
boot.supportedFilesystems.bcachefs = true;
environment.systemPackages = with pkgs; [ bcachefs-tools ];
boot.kernelPatches = [
{
name = "bcachefs-casefold-fix";
patch = null;
structuredExtraConfig = with lib.kernel; {
UNICODE = lib.mkOverride 90 no;
};
}
];
};
}
|