From 79de44c84b6424f076edc61989c03e29a939d792 Mon Sep 17 00:00:00 2001 From: William Date: Wed, 6 Dec 2023 21:55:05 -0300 Subject: [PATCH] sddm cursor size --- hosts/desktops/common/services.nix | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/hosts/desktops/common/services.nix b/hosts/desktops/common/services.nix index 314aebc..af7847f 100644 --- a/hosts/desktops/common/services.nix +++ b/hosts/desktops/common/services.nix @@ -38,11 +38,16 @@ in { compositorCommand = "${pkgs.kwin}/bin/kwin_wayland --no-global-shortcuts --no-lockscreen --locale1"; }; - settings.General = { - GreeterEnvironment = - "QT_PLUGIN_PATH=${pkgs.plasma5Packages.layer-shell-qt}/${pkgs.plasma5Packages.qtbase.qtPluginPrefix},QT_WAYLAND_SHELL_INTEGRATION=layer-shell,XKB_DEFAULT_KEYMAP=en"; - InputMethod = ""; - CursorTheme = "breeze_cursors"; + settings = { + Theme = { + CursorTheme = "breeze_cursors"; + CursorSize = "24"; + }; + General = { + GreeterEnvironment = + "QT_PLUGIN_PATH=${pkgs.plasma5Packages.layer-shell-qt}/${pkgs.plasma5Packages.qtbase.qtPluginPrefix},QT_WAYLAND_SHELL_INTEGRATION=layer-shell,XKB_DEFAULT_KEYMAP=us,XKB_DEFAULT_VARIANT=altgr-intl"; + InputMethod = ""; + }; }; }; };