nixos/sddm: remove LANG=C.UTF-8

Not sure why that was there but it's evidently not necessary.
This commit is contained in:
K900 2024-08-27 19:45:47 +03:00
parent 2fc89ef2b4
commit 0dfb94dbdf

View File

@ -44,10 +44,7 @@ let
DisplayServer = if cfg.wayland.enable then "wayland" else "x11";
} // optionalAttrs (cfg.wayland.compositor == "kwin") {
GreeterEnvironment = concatStringsSep " " [
"LANG=C.UTF-8"
"QT_WAYLAND_SHELL_INTEGRATION=layer-shell"
];
GreeterEnvironment = "QT_WAYLAND_SHELL_INTEGRATION=layer-shell";
InputMethod = ""; # needed if we are using --inputmethod with kwin
};