nixos/installer/channel: Add some files that the channel also has

Nothing probably uses this, but let's be pedantic and have the
pre-included channel on the install media be as close as possible to
what 'nix-channel --update' will give them.

The only remaining difference is that the channel adds programs.sqlite,
which is fundamentally unfixable.

+2
+2
nixos/modules/installer/cd-dvd/channel.nix
··· 21 21 if [ ! -e $out/nixos/nixpkgs ]; then 22 22 ln -s . $out/nixos/nixpkgs 23 23 fi 24 + echo -n ${config.system.nixos.revision} > $out/nixos/.git-revision 24 25 echo -n ${config.system.nixos.versionSuffix} > $out/nixos/.version-suffix 26 + echo ${config.system.nixos.versionSuffix} | sed -e s/pre// > $out/nixos/svn-revision 25 27 ''; 26 28 27 29 in