Commit ef190570 authored by K900's avatar K900
Browse files

nixos/bcachefs: use linuxPackages_latest

parent 549529d5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -123,8 +123,8 @@ in
      inherit assertions;
      # needed for systemd-remount-fs
      system.fsPackages = [ pkgs.bcachefs-tools ];
      # FIXME: Replace this with `linuxPackages_latest` when 6.7 is released, remove this line when the LTS version is at least 6.7
      boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_testing;
      # FIXME: Remove this line when the default kernel has bcachefs
      boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
      systemd.services = lib.mapAttrs' (mkUnits "") (lib.filterAttrs (n: fs: (fs.fsType == "bcachefs") && (!utils.fsNeededForBoot fs)) config.fileSystems);
    }