dotfiles/defaults/games/default.nix
2020-11-30 19:03:30 +01:00

28 lines
491 B
Nix

{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs;
[
neverball
wesnoth
pingus
superTux
superTuxKart
extremetuxracer
zeroad
] ++ (with pkgs.gnome3; [ # Selection of gnome3 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
]);
}