mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
49ed1229b6
`exfat-utils' and `fuse_exfat' are both aliases of `exfat'
11 lines
168 B
Nix
11 lines
168 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = mkIf (any (fs: fs == "exfat") config.boot.supportedFilesystems) {
|
|
|
|
system.fsPackages = [ pkgs.exfat ];
|
|
|
|
};
|
|
}
|