about summary refs log tree commit diff
path: root/nix/games.nix
blob: 0189ca7f9b5cf31eefe827602d76366e6041a10b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ pkgs, ... }:
{
  users.users.sea.packages = with pkgs; [
    _20kly hedgewars # strategy
    bastet moon-buggy n2048 # text
    blackshades xonotic-glx # fps
    superTux # platformer
    pianobooster # engine
    extremetuxracer superTuxKart # vehicle
    flare # slash
    frozen-bubble neverball pinball xbill # coffeebreak
    steamPackages.steam-fhsenv-without-steam.run
  ];

  hardware = {
    opengl.driSupport32Bit = true;
    pulseaudio.support32Bit = true;
  };
}