Unverified Commit 8db9c4ed authored by Florian Klink's avatar Florian Klink Committed by GitHub
Browse files

Merge pull request #201266 from aszlig/fix-fsck

nixos: Fix fsck with systemd 251.6 and later
parents 27fc0153 d9b1bde3
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -300,7 +300,11 @@ 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 ];
    system.fsPackages = [
      pkgs.dosfstools
      # This is needed for the main fsck utility wrapping the fs-specific ones.
      pkgs.util-linux
    ];

    environment.systemPackages = with pkgs; [ fuse3 fuse ] ++ config.system.fsPackages;