Files
NixConfig/conf/PatchJogos/patch.nix
T
Guilherme Hermando 3c5d19c060 Add files via upload
2025-08-06 00:06:34 -03:00

22 lines
477 B
Nix

{ 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;
programs.gamemode.enable = true;
}