{ pkgs, ... }: { home.packages = with pkgs; [ steam protonup-ng ]; xdg.desktopEntries = { Steam = { name = "Steam"; exec = "${pkgs.steam}/bin/steam"; icon = "steam"; type = "Application"; categories = [ "Game" "Network" ]; terminal = false; }; }; home.sessionVariables = { STEAM_FORCE_DESKTOPUI_SCALING = "1.25"; }; }