From fc91ba52dfcc8f992b81cd10fcc1d79ce33ac47c Mon Sep 17 00:00:00 2001
From: Eelco Dolstra <eelco.dolstra@logicblox.com>
Date: Mon, 20 Apr 2015 14:06:44 +0200
Subject: [PATCH] ntfs.nix: Remove copypasta jfs stuff

Thanks to @wizeman for spotting this!
---
 nixos/modules/tasks/filesystems/ntfs.nix | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/nixos/modules/tasks/filesystems/ntfs.nix b/nixos/modules/tasks/filesystems/ntfs.nix
index 503ec64f9a92..ba71e7b30ea8 100644
--- a/nixos/modules/tasks/filesystems/ntfs.nix
+++ b/nixos/modules/tasks/filesystems/ntfs.nix
@@ -13,10 +13,5 @@ in
 
     system.fsPackages = [ pkgs.ntfs3g ];
 
-    boot.initrd.kernelModules = mkIf inInitrd [ "jfs" ];
-
-    boot.initrd.extraUtilsCommands = mkIf inInitrd ''
-      copy_bin_and_libs ${pkgs.jfsutils}/sbin/fsck.jfs
-    '';
   };
 }