nix-config/home/programs/games.nix

21 lines
206 B
Nix
Raw Normal View History

2025-03-26 16:16:42 +01:00
{
pkgs,
config,
username,
...
}: {
2025-03-26 21:00:36 +01:00
home.packages = with pkgs; [
# Launchers
steam
2025-03-26 22:08:40 +01:00
# itch
2025-03-26 21:00:36 +01:00
lutris
# Games
xonotic
2025-03-26 22:08:40 +01:00
# armagetron
2025-03-26 21:00:36 +01:00
freeciv
mindustry
openra
];
2025-03-26 16:16:42 +01:00
}