about summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2023-03-03 16:16:31 +0300
committerIzorkin <izorkin@elven.pw>2023-03-03 23:32:48 +0300
commit3e3367aa6a18cf4ec4c79c21f36eec150b3d7939 (patch)
tree464b41515aad12311611f40a231d1caf081406c8 /nixos/modules/tasks/filesystems
parent0367cc8b5a7d4e6e62ca7c9f429f8a1901194297 (diff)
downloadnixlib-3e3367aa6a18cf4ec4c79c21f36eec150b3d7939.tar
nixlib-3e3367aa6a18cf4ec4c79c21f36eec150b3d7939.tar.gz
nixlib-3e3367aa6a18cf4ec4c79c21f36eec150b3d7939.tar.bz2
nixlib-3e3367aa6a18cf4ec4c79c21f36eec150b3d7939.tar.lz
nixlib-3e3367aa6a18cf4ec4c79c21f36eec150b3d7939.tar.xz
nixlib-3e3367aa6a18cf4ec4c79c21f36eec150b3d7939.tar.zst
nixlib-3e3367aa6a18cf4ec4c79c21f36eec150b3d7939.zip
nixos/profiles/base: remove duplicate and optimize fsPackages
Diffstat (limited to 'nixos/modules/tasks/filesystems')
-rw-r--r--nixos/modules/tasks/filesystems/vfat.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/tasks/filesystems/vfat.nix b/nixos/modules/tasks/filesystems/vfat.nix
index 5baab1c802cf..5421b617b43b 100644
--- a/nixos/modules/tasks/filesystems/vfat.nix
+++ b/nixos/modules/tasks/filesystems/vfat.nix
@@ -11,7 +11,7 @@ in
 {
   config = mkIf (any (fs: fs == "vfat") config.boot.supportedFilesystems) {
 
-    system.fsPackages = [ pkgs.dosfstools ];
+    system.fsPackages = [ pkgs.dosfstools pkgs.mtools ];
 
     boot.initrd.kernelModules = mkIf inInitrd [ "vfat" "nls_cp437" "nls_iso8859-1" ];