2019-12-10 14:38:45 +00:00
|
|
|
# Configuration for
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
2021-09-28 01:29:27 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
sources = import ../nix/sources.nix;
|
|
|
|
unstable = import sources.nixpkgsUnstable {};
|
|
|
|
in
|
|
|
|
|
2019-12-10 14:38:45 +00:00
|
|
|
{
|
2021-06-25 07:45:50 +00:00
|
|
|
|
|
|
|
nixpkgs.config = {
|
|
|
|
allowUnfree = true;
|
|
|
|
permittedInsecurePackages = [
|
|
|
|
"minecraft"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2019-12-10 14:38:45 +00:00
|
|
|
# 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
|
2021-09-28 01:29:27 +00:00
|
|
|
unstable.grapejuice # Simple Wine+Roblox management tool
|
2019-12-10 14:38:45 +00:00
|
|
|
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
|
2021-06-25 07:45:50 +00:00
|
|
|
minecraft # Official launcher for Minecraft
|
2019-12-10 14:38:45 +00:00
|
|
|
minetest # Infinite-world block sandbox game
|
2020-04-27 09:48:28 +00:00
|
|
|
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
|
|
|
|
pingus # A puzzle game with mechanics similar to Lemmings
|
2020-12-31 02:05:51 +00:00
|
|
|
shattered-pixel-dungeon # Roguelike game with pixel-art graphics
|
2019-12-10 14:38:45 +00:00
|
|
|
superTux # Classic 2D jump'n run sidescroller game
|
|
|
|
superTuxKart # A Free 3D kart racing game
|
|
|
|
wesnoth # Battle for Wesnoth server and client
|
|
|
|
];
|
|
|
|
|
|
|
|
}
|