nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

steam.nix (344B)


      1 { pkgs, ... }:
      2 
      3 {
      4   programs = {
      5     gamemode.enable = true;
      6     steam.enable = true;
      7     steam.gamescopeSession.enable = true;
      8   };
      9 
     10   environment.systemPackages = with pkgs; [
     11     mangohud
     12     protonup-ng
     13   ];
     14 
     15   environment.sessionVariables = {
     16     STEAM_EXTRA_COMPAT_TOOLS_PATHS =
     17       "\${HOME}/.steam/root/compatibilitytools.d";
     18   };
     19 
     20 }