diff --git a/nixos/lyc-desktop/configuration.nix b/nixos/lyc-desktop/configuration.nix index 37cf0eed..f6e7b47f 100644 --- a/nixos/lyc-desktop/configuration.nix +++ b/nixos/lyc-desktop/configuration.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). -{ config, pkgs, ... }: +{ config, pkgs, lib, ... }: { @@ -54,6 +54,9 @@ services.xserver.displayManager.sddm.enable = true; services.xserver.desktopManager.plasma5.enable = true; + # Workaround of nixpkgs#187963 and nixpkgs#199881 + services.xserver.displayManager.setupCommands = lib.mkForce ""; + # Configure keymap in X11 services.xserver = { layout = "us";