/ applications / steam.nix
steam.nix
1 { config, lib, pkgs, ... }: { 2 home.file.".local/share/applications/steam.desktop" = { 3 text = '' 4 [Desktop Entry] 5 Type=Application 6 Name=Steam 7 Comment=Game Launcher 8 Exec=gamescope -W 1920 -H 1200 -w 1920 -h 1200 -f -- steam 9 Icon=steam 10 Terminal=false 11 ''; 12 }; 13 }