15 lines
428 B
Nix
15 lines
428 B
Nix
|
{ pkgs, ... }: {
|
||
|
programs.steam = {
|
||
|
enable = true;
|
||
|
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
||
|
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
|
||
|
};
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
prismlauncher
|
||
|
heroic #FIXME - desktop entries are not added (KDE PLlasma)
|
||
|
protonup-qt
|
||
|
protontricks
|
||
|
winetricks
|
||
|
];
|
||
|
}
|