21 lines
204 B
Nix
21 lines
204 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
username,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
# Launchers
|
|
steam
|
|
itch
|
|
lutris
|
|
|
|
# Games
|
|
xonotic
|
|
armagetron
|
|
freeciv
|
|
mindustry
|
|
openra
|
|
];
|
|
}
|