nixos/init-script: fix eval

error: attribute 'nixos' missing

This was missed in https://github.com/NixOS/nixpkgs/commit/d3528cdc3dbe82a0551707fe869aec02bba72956

Changed files
+1 -1
nixos
modules
system
boot
loader
init-script
+1 -1
nixos/modules/system/boot/loader/init-script/init-script.nix
···
src = ./init-script-builder.sh;
isExecutable = true;
inherit (pkgs) bash;
-
inherit (config.nixos.system) distroName;
path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
};
···
src = ./init-script-builder.sh;
isExecutable = true;
inherit (pkgs) bash;
+
inherit (config.system.nixos) distroName;
path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
};