nixos/ISO profile: fix defaultLocales :-)

https://github.com/NixOS/nixpkgs/commit/eb4a88d8fd2#commitcomment-12527102
This commit is contained in:
Vladimír Čunát 2015-08-06 12:30:38 +02:00
parent 2f97de9191
commit 7dc9450ed2

View file

@ -7,6 +7,8 @@ with lib;
{
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;
}