I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

40 lines
990 B

# <<file-warning>>
{ config, pkgs, ... }:
let
# Keep garbage out of the home directory.
mySteamDir = "$XDG_DATA_HOME/steam";
# Custom shim for running steam.
mySteam = writeScriptBin "steam" ''
#!${stdenv.shell}
HOME="${mySteamDir}" exec ${steam}/bin/steam "$@"
'';
# Run applications using the steam libraries.
mySteamRun = writeScriptBin "steam-run" ''
#!${stdenv.shell}
HOME="${mySteamDir}" exec ${steam-run-native}/bin/steam-run "$@"
'';
in {
# Install custom shims.
environment.systemPackages = [
mySteam
mySteamRun
];
# Create the steam directory.
system.userActivationScripts.setupSteamDir = ''
mkdir -p ${mySteamDir}
'';
# Required hardware configuration(s).
hardware.opengl.enable = true;
hardware.opengl.driSupport32Bit = true;
hardware.pulseaudio.support32Bit = true;
hardware.steam-hardware.enable = true;
# Increase performance for proton games.
systemd.extraConfig = "DefaultLimitNOFILE=1048576";
}