13 lines
229 B
Nix
13 lines
229 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.steam.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
lutris
|
|
xonotic
|
|
steam-run
|
|
mumble_git
|
|
multimc
|
|
(retroarch.override {cores = [libretro.snes9x]; })
|
|
godot
|
|
];
|
|
}
|