nixos/bcachefs: clarify 'FIXME' comment on when to remove

This commit is contained in:
Madoura 2024-01-09 07:50:44 -06:00
parent d86395db78
commit 9dfa878a20
No known key found for this signature in database
GPG Key ID: 9086473B4D809BD2

@ -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);
}