Remove default value for nixpkgs.system

Using "builtins.currentSystem" doesn't work in pure evaluation mode,
and even when it's explicitly set (which it always is, in
nixos/lib/eval-config.nix), it breaks manual generation because the
manual tries to render the default value.

-1
-1
nixos/modules/misc/nixpkgs.nix
··· 196 system = mkOption { 197 type = types.str; 198 example = "i686-linux"; 199 - default = { system = builtins.currentSystem; }; 200 description = '' 201 Specifies the Nix platform type on which NixOS should be built. 202 It is better to specify <code>nixpkgs.localSystem</code> instead.
··· 196 system = mkOption { 197 type = types.str; 198 example = "i686-linux"; 199 description = '' 200 Specifies the Nix platform type on which NixOS should be built. 201 It is better to specify <code>nixpkgs.localSystem</code> instead.