20 lines
433 B
Nix
20 lines
433 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
|
|
]);
|
|
}
|