From e0373b492ca8ff595d0ec44e331e0899503a4076 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 7 Jan 2025 07:23:19 +0100 Subject: [PATCH] exfat support --- lib/types/filesystem.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/types/filesystem.nix b/lib/types/filesystem.nix index e59e186d..bb7d9454 100644 --- a/lib/types/filesystem.nix +++ b/lib/types/filesystem.nix @@ -101,6 +101,7 @@ else if (config.format == "ext4") then [ pkgs.e2fsprogs ] else if (config.format == "bcachefs") then [ pkgs.bcachefs-tools ] else if (config.format == "f2fs") then [ pkgs.f2fs-tools ] + else if (config.format == "exfat") then [ pkgs.exfatprogs ] else [ ] ); description = "Packages";