blob: 41357a2e5608a40d068ec86715eb51483cd39885 (
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;
extraStructuredConfig = with lib.kernel; {
UNICODE = lib.mkOverride 900 no;
};
}
];
};
}
|