nixos/jfs: correct broken toplevel reference

Changed files
+1 -1
nixos
modules
tasks
filesystems
+1 -1
nixos/modules/tasks/filesystems/jfs.nix
···
boot.initrd.kernelModules = mkIf inInitrd [ "jfs" ];
-
boot.initrd.extraUtilsCommands = mkIf (inInitrd && !boot.initrd.systemd.enable) ''
+
boot.initrd.extraUtilsCommands = mkIf (inInitrd && !config.boot.initrd.systemd.enable) ''
copy_bin_and_libs ${pkgs.jfsutils}/sbin/fsck.jfs
'';
};