complete restructure
This commit is contained in:
23
modules/gaming/steam.nix
Normal file
23
modules/gaming/steam.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
# modules/gaming/steam.nix
|
||||
# Steam and Proton configuration
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = true;
|
||||
dedicatedServer.openFirewall = true;
|
||||
localNetworkGameTransfers.openFirewall = true;
|
||||
|
||||
extraCompatPackages = with pkgs; [
|
||||
proton-ge-bin
|
||||
];
|
||||
};
|
||||
|
||||
hardware.steam-hardware.enable = true;
|
||||
}
|
||||
Reference in New Issue
Block a user