From 7dc9450ed2a2c17ec93eca2e9ebfa96a389ff14e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 6 Aug 2015 12:30:38 +0200 Subject: [PATCH] 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(-) diff --git a/nixos/modules/profiles/minimal.nix b/nixos/modules/profiles/minimal.nix index 3b18ae129b9..c353da227ae 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; }