nixos/ISO profile: fix defaultLocales :-)

https://github.com/NixOS/nixpkgs/commit/eb4a88d8fd2#commitcomment-12527102

Changed files
+3 -1
nixos
modules
profiles
+3 -1
nixos/modules/profiles/minimal.nix
···
{
environment.noXlibs = mkDefault true;
-
i18n.supportedLocales = [ config.i18n.defaultLocale ];
+
+
# This isn't perfect, but let's expect the user specifies an UTF-8 defaultLocale
+
i18n.supportedLocales = [ (config.i18n.defaultLocale + "/UTF-8") ];
services.nixosManual.enable = mkDefault false;
}