mio-ops/roles/games-kids.nix

28 lines
1.2 KiB
Nix
Raw Normal View History

2019-12-10 14:38:45 +00:00
# Configuration for
{ config, pkgs, ... }:
{
# Retro Gaming Packages
environment.systemPackages = with pkgs; [
2020-02-04 03:30:21 +00:00
angband # A single-player roguelike dungeon exploration game
egoboo # 3D dungeon crawling adventure
2019-12-10 14:38:45 +00:00
extremetuxracer # High speed arctic racing game based on Tux Racer
freeciv # Multiplayer (or single player), turn-based strategy game
freedroidrpg # Isometric 3D RPG similar to game Diablo
gcompris # Educational software suite, kids aged 2 to 10
jre # Required by Minecraft (via multimc)
2020-04-24 05:46:05 +00:00
#lincity_ng # City building game
2020-02-04 03:30:21 +00:00
meritous # Action-adventure dungeon crawl game
2019-12-10 14:38:45 +00:00
minetest # Infinite-world block sandbox game
multimc # Minecraft launcher
2020-04-27 09:48:28 +00:00
nethack-x11 # Rogue-like game
2020-02-04 03:30:21 +00:00
opendungeons # real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius
2019-12-10 14:38:45 +00:00
#pingus # A puzzle game with mechanics similar to Lemmings
superTux # Classic 2D jump'n run sidescroller game
superTuxKart # A Free 3D kart racing game
wesnoth # Battle for Wesnoth server and client
];
}