10 lines
321 B
Nix
10 lines
321 B
Nix
{ config, pkgs, user, ... }:
|
|
{
|
|
environment.sessionVariables = {
|
|
XDG_SESSION_TYPE = "wayland"; # Session type
|
|
XDG_CURRENT_DESKTOP = "Hyprland"; # Desktop environment
|
|
XCURSOR_SIZE = "24"; # Cursor size
|
|
# Add other session-wide variables here (e.g., QT_QPA_PLATFORM, SDL_VIDEODRIVER)
|
|
};
|
|
}
|