From 19366a10fcfa33acc1d150e6815cc49bd1a59988 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 27 Apr 2015 19:19:48 +0200 Subject: [PATCH] Remove redundant i18n.supportedLocales setting This is already set in profiles/minimal.nix. Probably fixes #7589. --- nixos/modules/profiles/installation-device.nix | 4 ---- 1 file changed, 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";