dotfiles/home/fhauser/games.nix
2024-04-10 10:53:41 +07:00

35 lines
497 B
Nix

{
config,
pkgs,
lib,
...
}:
{
home.packages =
with pkgs;
[
neverball
wesnoth
pingus
superTux
superTuxKart
extremetuxracer
zeroad
]
++ (with pkgs.gnome; [
# Selection of gnome games
five-or-more
four-in-a-row
gnome-chess
gnome-klotski
gnome-mahjongg
gnome-nibbles
gnome-robots
gnome-sudoku
gnome-taquin
gnome-tetravex
lightsoff
quadrapassel
]);
}