Files
NixMachines/machines/universedesktop/programs/games.nix

19 lines
298 B
Nix

{ lib, config, pkgs, ... }: {
# For steam
services.flatpak.enable = true;
# Game compat
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
# For Steam
protontricks
# Minecraft
openjdk17
prismlauncher
# PS2 Games
pcsx2
];
}