Files
NixMachines/programs/games.nix
2023-08-14 20:28:15 -04:00

19 lines
296 B
Nix

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