1
0
Fork 0

Fix locale

This commit is contained in:
Malte Brandy 2018-07-31 13:10:20 +02:00
parent 7a5c569bd7
commit 4222b6c38c
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9

View file

@ -1,6 +1,7 @@
{ pkgs, config, lib, ... }:
let
me = config.m-0.private.me;
unstable = import <unstable> {};
in {
# channel = 18.03
@ -33,4 +34,7 @@ in {
openssh.authorizedKeys.keys = me.keys;
};
};
environment.sessionVariables = {
LOCALE_ARCHIVE_2_27 = "${unstable.glibcLocales}/lib/locale/locale-archive";
};
}