about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2024-01-08 16:17:12 +0300
committerGitHub <noreply@github.com>2024-01-08 16:17:12 +0300
commitb43946170e3b176b6bfcf6b4df8a051b337b0394 (patch)
tree5d94f5b200b75ca06c2774f31ace32dfd098b7cc /nixos
parent383b91546108940e2a8d385ea9220688c48f538d (diff)
parentef190570b8639a8d96c2e1cd25be117d79d5d5ef (diff)
Merge pull request #279531 from K900/linux-6.7
linux_6_7: init at 6.7
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/tasks/filesystems/bcachefs.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/tasks/filesystems/bcachefs.nix b/nixos/modules/tasks/filesystems/bcachefs.nix
index e771b706becea..fdb149a3d9a17 100644
--- a/nixos/modules/tasks/filesystems/bcachefs.nix
+++ b/nixos/modules/tasks/filesystems/bcachefs.nix
@@ -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);
     }