flake/nixos/gaming.nix

15 lines
428 B
Nix
Raw Normal View History

{ 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
];
}