49ed1229b6
`exfat-utils' and `fuse_exfat' are both aliases of `exfat'
12 lines
168 B
Nix
12 lines
168 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = mkIf (any (fs: fs == "exfat") config.boot.supportedFilesystems) {
|
|
|
|
system.fsPackages = [ pkgs.exfat ];
|
|
|
|
};
|
|
}
|