mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
a049d84229
5.7+ comes with a native exfat implementation, exfatprogs should be used instead. The exfat package puts a "mount.exfat" binary in the path, which causes mount to prefer the FUSE version to the non-fuse one. There's no way to disable the binary, so switch to exfatprogs.
14 lines
282 B
Nix
14 lines
282 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = mkIf (any (fs: fs == "exfat") config.boot.supportedFilesystems) {
|
|
system.fsPackages = if config.boot.kernelPackages.kernelOlder "5.7" then [
|
|
pkgs.exfat # FUSE
|
|
] else [
|
|
pkgs.exfatprogs # non-FUSE
|
|
];
|
|
};
|
|
}
|