nixpkgs/nixos/modules/tasks/filesystems/ntfs.nix
Eelco Dolstra fc91ba52df ntfs.nix: Remove copypasta jfs stuff
Thanks to @wizeman for spotting this!
2015-04-20 14:06:44 +02:00

18 lines
274 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
inInitrd = any (fs: fs == "ntfs") config.boot.initrd.supportedFilesystems;
in
{
config = mkIf (any (fs: fs == "ntfs" || fs == "ntfs-3g") config.boot.supportedFilesystems) {
system.fsPackages = [ pkgs.ntfs3g ];
};
}