19 lines
296 B
Nix
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
|
|
];
|
|
}
|