From 311e314655031f6d009953d3dafbd9080a6e1a90 Mon Sep 17 00:00:00 2001 From: Alexander Sosedkin Date: Mon, 4 Nov 2019 22:25:01 +0000 Subject: [PATCH] Move locale hack out of sight ... so it won't disrupt the narrative. --- src/pkgs/files/raw/home.nix.default | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pkgs/files/raw/home.nix.default b/src/pkgs/files/raw/home.nix.default index 4709b09..350a224 100644 --- a/src/pkgs/files/raw/home.nix.default +++ b/src/pkgs/files/raw/home.nix.default @@ -15,11 +15,6 @@ in # userEmail = "jane.doe@example.org"; #}; - # Fix locale (perl apps panic without it) - home.sessionVariables = { - LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive"; - }; - # Simply install just the packages home.packages = with pkgs; [ # Stuff that you really really want to have @@ -50,6 +45,11 @@ in #zip #unzip ]; + + # Fix locale (perl apps panic without it) + home.sessionVariables = { + LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive"; + }; } # vim: ft=nix