From 0a5ede0ad7fab205e53034388187ae1f79e7d562 Mon Sep 17 00:00:00 2001
From: DerGrumpf
Date: Wed, 26 Mar 2025 21:00:36 +0100
Subject: [PATCH] Added: Games
---
home/programs/games.nix | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/home/programs/games.nix b/home/programs/games.nix
index 59a939e..7385b37 100644
--- a/home/programs/games.nix
+++ b/home/programs/games.nix
@@ -4,7 +4,17 @@
username,
...
}: {
- programs = {
- xonotic.enable = true;
- };
+ home.packages = with pkgs; [
+ # Launchers
+ steam
+ itch
+ lutris
+
+ # Games
+ xonotic
+ armagetron
+ freeciv
+ mindustry
+ openra
+ ];
}