16 lines
235 B
Nix
16 lines
235 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
neverball
|
|
wesnoth
|
|
pingus
|
|
superTux
|
|
superTuxKart
|
|
extremetuxracer
|
|
zeroad
|
|
#TODO: smc
|
|
];
|
|
|
|
services.gnome3.games.enable = true;
|
|
}
|