28 lines
489 B
Nix
28 lines
489 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs;
|
|
[
|
|
neverball
|
|
wesnoth
|
|
pingus
|
|
superTux
|
|
superTuxKart
|
|
extremetuxracer
|
|
zeroad
|
|
|
|
] ++ (with pkgs.gnome; [ # Selection of gnome games
|
|
five-or-more
|
|
four-in-a-row
|
|
gnome-chess
|
|
gnome-klotski
|
|
gnome-mahjongg
|
|
gnome-nibbles
|
|
gnome-robots
|
|
gnome-sudoku
|
|
gnome-taquin
|
|
gnome-tetravex
|
|
lightsoff
|
|
quadrapassel
|
|
]);
|
|
}
|