19 lines
311 B
Nix
19 lines
311 B
Nix
{ config
|
|
, lib
|
|
, pkgs
|
|
, ...
|
|
}: {
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
dedicatedServer.openFirewall = true;
|
|
};
|
|
|
|
chaotic.steam.extraCompatPackages = with pkgs; [
|
|
proton-ge-custom
|
|
];
|
|
|
|
environment.systemPackages = with pkgs.unstable-os; [
|
|
gamescope
|
|
];
|
|
}
|