16 lines
243 B
Nix
16 lines
243 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
dedicatedServer.openFirewall = true;
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
protonup-ng
|
|
pkgs.lutris
|
|
];
|
|
}
|