14 lines
315 B
Nix
14 lines
315 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
lib.mkIf config.programs.steam.enable {
|
|
programs.steam = {
|
|
gamescopeSession.enable = true; # Adds a steam entry to the login manager
|
|
extest.enable = true;
|
|
localNetworkGameTransfers.openFirewall = true;
|
|
extraCompatPackages = with pkgs; [ proton-ge-bin ];
|
|
};
|
|
}
|