Clean up base role

This commit is contained in:
Fabian Hauser 2020-11-30 19:03:30 +01:00
parent 83cd92035b
commit f4c6c70d67
9 changed files with 242 additions and 186 deletions

View file

@ -1,27 +1,28 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
neverball
wesnoth
pingus
superTux
superTuxKart
extremetuxracer
zeroad
environment.systemPackages = with pkgs;
[
neverball
wesnoth
pingus
superTux
superTuxKart
extremetuxracer
zeroad
] ++ (with pkgs.gnome3; [ # Selection of gnome3 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
]);
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
]);
}