35 lines
497 B
Nix
35 lines
497 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
home.packages =
|
|
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
|
|
]);
|
|
}
|