From 49ed1229b66f1dbf84ce00e249b93fe88ec07af8 Mon Sep 17 00:00:00 2001
From: volth <volth@webmaster.ms>
Date: Thu, 12 Apr 2018 11:23:52 +0000
Subject: [PATCH] exfat-utils, fuse_exfat -> exfat

`exfat-utils' and `fuse_exfat' are both aliases of `exfat'
---
 nixos/modules/tasks/filesystems/exfat.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nixos/modules/tasks/filesystems/exfat.nix b/nixos/modules/tasks/filesystems/exfat.nix
index 963bc940b4f..1527f993fdd 100644
--- a/nixos/modules/tasks/filesystems/exfat.nix
+++ b/nixos/modules/tasks/filesystems/exfat.nix
@@ -5,7 +5,7 @@ with lib;
 {
   config = mkIf (any (fs: fs == "exfat") config.boot.supportedFilesystems) {
 
-    system.fsPackages = [ pkgs.exfat-utils pkgs.fuse_exfat ];
+    system.fsPackages = [ pkgs.exfat ];
 
   };
 }