From 7dc9450ed2a2c17ec93eca2e9ebfa96a389ff14e Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Thu, 6 Aug 2015 12:30:38 +0200 Subject: nixos/ISO profile: fix defaultLocales :-) https://github.com/NixOS/nixpkgs/commit/eb4a88d8fd2#commitcomment-12527102 --- nixos/modules/profiles/minimal.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'nixos/modules/profiles') diff --git a/nixos/modules/profiles/minimal.nix b/nixos/modules/profiles/minimal.nix index 3b18ae129b93..c353da227aeb 100644 --- a/nixos/modules/profiles/minimal.nix +++ b/nixos/modules/profiles/minimal.nix @@ -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; } -- cgit 1.4.1