{ config, pkgs, lib, ... }: { # Add this module's pinned applications desktop.plasma.pinnedApps = [ "applications:steam.desktop" # Steam gaming platform "applications:discord.desktop" # Gaming communication ]; environment.systemPackages = with pkgs; [ discord # Gaming communication stremio # Media streaming # parsec-bin # bottles ]; # Steam programs.steam = with pkgs; { enable = true; remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server }; }