about summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems
diff options
context:
space:
mode:
authorMadoura <madouura@gmail.com>2024-01-09 07:50:44 -0600
committerMadoura <madouura@gmail.com>2024-01-16 15:06:05 -0600
commit9dfa878a20648152ef7851d3bf863a54fb52ffdd (patch)
treed2d8af27b7f8d9c058a3af907cfec126f9789448 /nixos/modules/tasks/filesystems
parentd86395db78fccd6c0d047ac987e05c3a9de2dcf7 (diff)
nixos/bcachefs: clarify 'FIXME' comment on when to remove
Diffstat (limited to 'nixos/modules/tasks/filesystems')
-rw-r--r--nixos/modules/tasks/filesystems/bcachefs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/tasks/filesystems/bcachefs.nix b/nixos/modules/tasks/filesystems/bcachefs.nix
index fdb149a3d9a17..c696ddfc24f60 100644
--- a/nixos/modules/tasks/filesystems/bcachefs.nix
+++ b/nixos/modules/tasks/filesystems/bcachefs.nix
@@ -123,7 +123,7 @@ in
       inherit assertions;
       # needed for systemd-remount-fs
       system.fsPackages = [ pkgs.bcachefs-tools ];
-      # FIXME: Remove this line when the default kernel has bcachefs
+      # FIXME: Remove this line when the LTS (default) kernel is at least version 6.7
       boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
       systemd.services = lib.mapAttrs' (mkUnits "") (lib.filterAttrs (n: fs: (fs.fsType == "bcachefs") && (!utils.fsNeededForBoot fs)) config.fileSystems);
     }