cerulean
This commit is contained in:
parent
ac95603fc4
commit
f7de9f7a23
42 changed files with 1061 additions and 445 deletions
24
hosts/modules/steam.nix
Normal file
24
hosts/modules/steam.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{upkgs, ...}: {
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
package = upkgs.millennium-steam;
|
||||
|
||||
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
||||
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
|
||||
localNetworkGameTransfers.openFirewall = true;
|
||||
|
||||
extraCompatPackages = with upkgs; [
|
||||
proton-ge-bin
|
||||
];
|
||||
};
|
||||
|
||||
programs.gamemode.enable = true;
|
||||
|
||||
environment.systemPackages = with upkgs; [
|
||||
steamcmd
|
||||
protonup-qt
|
||||
|
||||
bottles
|
||||
mangohud
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue