Revert "Teste"

This reverts commit 30d0af2b55.

Reverter merda
This commit is contained in:
DarkGui
2025-09-23 15:24:19 -03:00
parent 30d0af2b55
commit de59653938
29 changed files with 1106 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
{ config, lib, inputs, pkgs, ... }: {
## Config da steam
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
nixpkgs.config.allowUnfreePredicate = pkg: lib.elem (lib.getName pkg) [
"steam"
"steam-original"
"steam-unwrapped"
"steam-run"
];
## patch jogos
programs = {
gamescope.enable = true;
gamemode.enable = true;
};
}