Patch ntfsplus kernel module to support nowindows_names

This commit is contained in:
2026-09-06 00:16:05 +02:00
parent cbf9cc29ca
commit ba0c0d55ce
5 changed files with 85 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{ config, lib, pkgs, ... }:
{
boot.extraModulePackages = [
((pkgs.callPackage ../../pkgs/ntfs/package.nix { kernel = config.boot.kernelPackages.kernel; }).overrideAttrs {
patches = [
./ntfsplus-patches/0001-fix-windows_names-option.patch
./ntfsplus-patches/0002-gate-bad-character-check-by-windows_names.patch
];
})
];
}