about summary refs log tree commit diff
path: root/nix/games.nix
blob: 63e3ccfdb835f00c13de8af2e36115e25050b2ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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 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 # launcher
  ];
}