15 lines
443 B
Nix
15 lines
443 B
Nix
{
|
|
nixosConfig,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
lib.mkIf nixosConfig.bchmnn.collections.games.enable {
|
|
home.packages = with pkgs; [
|
|
openjdk17 # the open-source java development kit
|
|
prismlauncher # a free, open source launcher for minecraft
|
|
# retroarchFull # multi-platform emulator frontend for libretro cores
|
|
celestia # real-time 3d simulation of space
|
|
extremetuxracer # high speed arctic racing game based on tux racer
|
|
];
|
|
}
|