summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-04-27 19:19:48 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-04-27 19:21:28 +0200
commit19366a10fcfa33acc1d150e6815cc49bd1a59988 (patch)
tree456f9c312ccaad8276a6694a31371c9247f3fe74 /nixos
parentbf9975e179a275bd3c7cffe237f7d7526ecb79c7 (diff)
downloadnixpkgs-19366a10fcfa33acc1d150e6815cc49bd1a59988.tar
nixpkgs-19366a10fcfa33acc1d150e6815cc49bd1a59988.tar.gz
nixpkgs-19366a10fcfa33acc1d150e6815cc49bd1a59988.tar.bz2
nixpkgs-19366a10fcfa33acc1d150e6815cc49bd1a59988.tar.lz
nixpkgs-19366a10fcfa33acc1d150e6815cc49bd1a59988.tar.xz
nixpkgs-19366a10fcfa33acc1d150e6815cc49bd1a59988.tar.zst
nixpkgs-19366a10fcfa33acc1d150e6815cc49bd1a59988.zip
Remove redundant i18n.supportedLocales setting
This is already set in profiles/minimal.nix.

Probably fixes #7589.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/profiles/installation-device.nix4
1 files changed, 0 insertions, 4 deletions
diff --git a/nixos/modules/profiles/installation-device.nix b/nixos/modules/profiles/installation-device.nix
index f1e73308057..a41d17e5182 100644
--- a/nixos/modules/profiles/installation-device.nix
+++ b/nixos/modules/profiles/installation-device.nix
@@ -26,10 +26,6 @@ with lib;
     # Disable some other stuff we don't need.
     security.sudo.enable = false;
 
-    # Include only the en_US locale.  This saves 75 MiB or so compared to
-    # the full glibcLocales package.
-    i18n.supportedLocales = ["en_US.UTF-8/UTF-8" "en_US/ISO-8859-1"];
-
     # Automatically log in at the virtual consoles.
     services.mingetty.autologinUser = "root";