nixos: f2fs filesystem module support (close #2085)

This commit is contained in:
Emery Hemingway
2014-05-11 13:53:26 +02:00
committed by Vladimír Čunát
parent c0a30a4b51
commit c96d5fe170
5 changed files with 43 additions and 2 deletions
+2 -1
View File
@@ -34,6 +34,7 @@
pkgs.dosfstools
pkgs.xfsprogs
pkgs.jfsutils
pkgs.f2fs-tools
#pkgs.jfsrec # disabled because of Boost dependency
# Some compression/archiver tools.
@@ -50,6 +51,6 @@
];
# Include support for various filesystems.
boot.supportedFilesystems = [ "btrfs" "reiserfs" "vfat" ];
boot.supportedFilesystems = [ "btrfs" "reiserfs" "vfat" "f2fs" ];
}