summary refs log tree commit diff
diff options
context:
space:
mode:
authorvolth <volth@webmaster.ms>2018-04-12 11:23:52 +0000
committerGitHub <noreply@github.com>2018-04-12 11:23:52 +0000
commit49ed1229b66f1dbf84ce00e249b93fe88ec07af8 (patch)
tree069160f4128d5232f9b745fffbfe7a8b32fcf6bb
parentad45ebeb3c69d9fd43fd3dded853bcc018c7d3f9 (diff)
downloadnixpkgs-49ed1229b66f1dbf84ce00e249b93fe88ec07af8.tar
nixpkgs-49ed1229b66f1dbf84ce00e249b93fe88ec07af8.tar.gz
nixpkgs-49ed1229b66f1dbf84ce00e249b93fe88ec07af8.tar.bz2
nixpkgs-49ed1229b66f1dbf84ce00e249b93fe88ec07af8.tar.lz
nixpkgs-49ed1229b66f1dbf84ce00e249b93fe88ec07af8.tar.xz
nixpkgs-49ed1229b66f1dbf84ce00e249b93fe88ec07af8.tar.zst
nixpkgs-49ed1229b66f1dbf84ce00e249b93fe88ec07af8.zip
exfat-utils, fuse_exfat -> exfat
`exfat-utils' and `fuse_exfat' are both aliases of `exfat'
-rw-r--r--nixos/modules/tasks/filesystems/exfat.nix2
1 files changed, 1 insertions, 1 deletions
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 ];
 
   };
 }