mio-ops/profiles/games-kids.nix

33 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2019-12-10 14:38:45 +00:00
# Configuration for
2022-03-07 14:26:15 +00:00
{
config,
pkgs,
2023-08-03 11:38:00 +00:00
nixpkgsUnstable,
2022-03-07 14:26:15 +00:00
...
2023-08-03 11:38:00 +00:00
}: {
imports = [
../profiles/minecraftClient.nix # Play Minecraft :-)
];
# Kid's Gaming Packages
2019-12-10 14:38:45 +00:00
environment.systemPackages = with pkgs; [
2021-11-16 04:57:23 +00:00
angband # A single-player roguelike dungeon exploration game
2021-12-16 04:21:18 +00:00
discord # cross-platform voice and text chat for gamers
2021-11-16 04:57:23 +00:00
egoboo # 3D dungeon crawling adventure
2019-12-10 14:38:45 +00:00
extremetuxracer # High speed arctic racing game based on Tux Racer
2021-11-16 04:57:23 +00:00
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
2020-04-24 05:46:05 +00:00
#lincity_ng # City building game
2021-11-16 04:57:23 +00:00
meritous # Action-adventure dungeon crawl game
minetest # Infinite-world block sandbox game
nethack-x11 # Rogue-like game
2021-06-04 00:32:51 +00:00
#opendungeons # real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius
2021-11-16 04:57:23 +00:00
pingus # A puzzle game with mechanics similar to Lemmings
shattered-pixel-dungeon # Roguelike game with pixel-art graphics
superTux # Classic 2D jump'n run sidescroller game
superTuxKart # A Free 3D kart racing game
wesnoth # Battle for Wesnoth server and client
2019-12-10 14:38:45 +00:00
];
}