about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorWill Fancher <elvishjerricco@gmail.com>2022-11-15 17:45:38 -0500
committerWill Fancher <elvishjerricco@gmail.com>2022-11-15 17:45:38 -0500
commitacecd1ec7bc009b644e9a6dc64d164583eb23860 (patch)
tree5845791581c2f4c2e5292699e65184973f6576f5 /nixos
parent8c8f38c1367fa90ff87d28a44b82fd8e59dc088d (diff)
Revert "nixos: Fix fsck with systemd 251.6 and later"
This reverts commit d9b1bde390eb133a3da66c8abd902ea2b754938c.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/tasks/filesystems.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/nixos/modules/tasks/filesystems.nix b/nixos/modules/tasks/filesystems.nix
index 97f02a8c963a8..399ea9eabe08d 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;