about summary refs log tree commit diff
path: root/nix/games.nix
blob: d4410789eec40af4e2b901c5456d2e8ad734bdec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ config, pkgs, ... }:

{
  environment.systemPackages = with pkgs; [
    _20kly hedgewars globulation2 scorched3d teeworlds # strategy
    astromenace chromium-bsu # scrolling
    azimuth cdogs-sdl taisei # shmup
    bastet moon-buggy n2048 # text
    # blackshades redeclipse warsow xonotic-glx # fps
    redeclipse xonotic-glx
    blobwars openclonk sienna superTux # platformer
    bonzomatic love # engine
    extremetuxracer gl117 gltron superTuxKart # vehicle
    flare freedroidrpg hyperrogue # slash
    frozen-bubble gnujump gtetrinet pinball xbill # coffeebreak
    neverball orthorobot # puzzle
    (steam.override {
      nativeOnly = true;
      extraPkgs = pkgs: [ SDL2_net ];
    }).run gnome.gtk # launcher
  ];
}