From 1f76a7bbeed2182133bd4a6cc72efc7e426a852a Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Fri, 7 Feb 2025 18:44:04 +0100 Subject: [PATCH] :art: update to fix nixos warnings :warning: --- nixos/configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 2a7fa0d..9ec42db 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -50,13 +50,13 @@ services.xserver.enable = true; # Enable the KDE Plasma Desktop Environment. - services.xserver.displayManager.sddm.enable = true; + services.displayManager.sddm.enable = true; services.xserver.desktopManager.plasma5.enable = true; # Configure keymap in X11 services.xserver = { - layout = "us"; - xkbVariant = ""; + xkb.layout = "us"; + xkb.variant = ""; }; # Enable CUPS to print documents.