17 lines
344 B
Nix
17 lines
344 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
mangohud
|
|
protonup-qt
|
|
lutris
|
|
bottles
|
|
heroic
|
|
];
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
localNetworkGameTransfers.openFirewall = true;
|
|
protontricks.enable = true;
|
|
gamescopeSession.enable = true;
|
|
};
|
|
}
|