From acecd1ec7bc009b644e9a6dc64d164583eb23860 Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Tue, 15 Nov 2022 17:45:38 -0500 Subject: [PATCH] Revert "nixos: Fix fsck with systemd 251.6 and later" This reverts commit d9b1bde390eb133a3da66c8abd902ea2b754938c. --- nixos/modules/tasks/filesystems.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/nixos/modules/tasks/filesystems.nix b/nixos/modules/tasks/filesystems.nix index 97f02a8c963a..399ea9eabe08 100644 --- a/nixos/modules/tasks/filesystems.nix +++ b/nixos/modules/tasks/filesystems.nix @@ -300,11 +300,7 @@ in boot.supportedFilesystems = map (fs: fs.fsType) fileSystems; # Add the mount helpers to the system path so that `mount' can find them. - system.fsPackages = [ - pkgs.dosfstools - # This is needed for the main fsck utility wrapping the fs-specific ones. - pkgs.util-linux - ]; + system.fsPackages = [ pkgs.dosfstools ]; environment.systemPackages = with pkgs; [ fuse3 fuse ] ++ config.system.fsPackages;