14 lines
237 B
Nix
14 lines
237 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.steam.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
lutris
|
|
steam-run
|
|
minetest
|
|
mumble
|
|
polymc
|
|
(retroarch.override {cores = [libretro.snes9x]; })
|
|
olympus
|
|
godot
|
|
];
|
|
}
|