diff --git a/nixos/modules/services/display-managers/sddm.nix b/nixos/modules/services/display-managers/sddm.nix index 54356f7bb617..a356c550f5d8 100644 --- a/nixos/modules/services/display-managers/sddm.nix +++ b/nixos/modules/services/display-managers/sddm.nix @@ -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 };