summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2019-10-23 00:49:48 +0200
committerJeschli <jeschli@gmail.com>2019-11-14 15:36:11 +0100
commit8748e50be78e28ebb920b878bcb00d105103844b (patch)
tree9f61d01f83ecc53bdbc71ab8e7631b618f143798
parent10214c7582769db974ce87bfb13527f9773126a3 (diff)
reaktor2: fix invalid character crash
-rw-r--r--krebs/3modules/reaktor2.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/krebs/3modules/reaktor2.nix b/krebs/3modules/reaktor2.nix
index 9ab207d8..837a9bea 100644
--- a/krebs/3modules/reaktor2.nix
+++ b/krebs/3modules/reaktor2.nix
@@ -53,6 +53,9 @@ with import <stockholm/lib>;
systemd.services = flip mapAttrs' config.krebs.reaktor2 (_: cfg:
nameValuePair cfg.systemd-service-name {
after = [ "network.target" ];
+ environment = {
+ LC_ALL = "en_US.UTF-8";
+ };
wantedBy = [ "multi-user.target" ];
serviceConfig = {
User = cfg.username;